diff --git a/src/azure-cli/azure/cli/command_modules/vm/_help.py b/src/azure-cli/azure/cli/command_modules/vm/_help.py
index 121230aaaad..f24b4828d3b 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/_help.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/_help.py
@@ -670,48 +670,6 @@
az image builder show -n mytemplate -g my-group
"""
-helps['ppg create'] = """
-type: command
-short-summary: Create a proximity placement group
-examples:
- - name: Create a proximity placement group (autogenerated)
- text: |
- az ppg create --name MyProximityPlacementGroup --resource-group MyResourceGroup
- crafted: true
- - name: Create a proximity placement group with specifying VM sizes that can be created.
- text: |
- az ppg create --name MyProximityPlacementGroup --resource-group MyResourceGroup \\
- --intent-vm-sizes Standard_E64s_v4 Standard_M416ms_v2
- - name: Create a proximity placement group with specifying VM sizes that can be created and availability zone.
- text: |
- az ppg create --name MyProximityPlacementGroup --resource-group MyResourceGroup \\
- --intent-vm-sizes Standard_E64s_v4 Standard_M416ms_v2 --zone 1
-"""
-
-helps['ppg list'] = """
-type: command
-short-summary: List proximity placement groups
-examples:
- - name: List proximity placement groups (autogenerated)
- text: |
- az ppg list --resource-group MyResourceGroup
- crafted: true
-"""
-
-helps['ppg update'] = """
-type: command
-short-summary: Update a proximity placement group
-parameters:
- - name: --include-colocation-status
- short-summary: includeColocationStatus=true enables fetching the colocation status of all the resources in the
- proximity placement group. Default value is None.
-examples:
- - name: Update a proximity placement group with specifying VM sizes that can be created.
- text: |
- az ppg update --name MyProximityPlacementGroup --resource-group MyResourceGroup \\
- --intent-vm-sizes Standard_E64s_v4 Standard_M416ms_v2
-"""
-
helps['sig image-definition create'] = """
type: command
short-summary: create a gallery image definition
diff --git a/src/azure-cli/azure/cli/command_modules/vm/_params.py b/src/azure-cli/azure/cli/command_modules/vm/_params.py
index 013e8cf543c..aa6cc2b4198 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/_params.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/_params.py
@@ -1443,19 +1443,6 @@ def load_arguments(self, _):
'used for decommissioning purposes. This property is updatable.', arg_group='Publishing Profile')
# endregion
- # region Proximity Placement Group
- with self.argument_context('ppg', min_api='2018-04-01') as c:
- c.argument('proximity_placement_group_name', arg_type=name_arg_type, help="The name of the proximity placement group.")
-
- with self.argument_context('ppg create') as c:
- c.argument('tags', tags_type, min_api='2018-04-01')
- c.argument('zone', zone_type, min_api='2021-11-01')
-
- for scope in ['ppg create', 'ppg update']:
- with self.argument_context(scope) as c:
- c.argument('ppg_type', options_list=['--type', '-t'], arg_type=get_enum_type(self.get_models('ProximityPlacementGroupType')), min_api='2018-04-01', help="The type of the proximity placement group.")
- c.argument('intent_vm_sizes', nargs='*', min_api='2021-11-01', help="Specify possible sizes of virtual machines that can be created in the proximity placement group.")
-
with self.argument_context('vm create', min_api='2018-04-01') as c:
c.argument('proximity_placement_group', options_list=['--ppg'], help="The name or ID of the proximity placement group the VM should be associated with.",
validator=_validate_proximity_placement_group)
diff --git a/src/azure-cli/azure/cli/command_modules/vm/_validators.py b/src/azure-cli/azure/cli/command_modules/vm/_validators.py
index e2df40f2813..93873c3a620 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/_validators.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/_validators.py
@@ -2445,16 +2445,6 @@ def _disk_encryption_set_format(cmd, namespace, name):
# endregion
-def process_ppg_create_namespace(namespace):
- validate_tags(namespace)
- # The availability zone can be provided only when an intent is provided
- if namespace.zone and not namespace.intent_vm_sizes:
- raise RequiredArgumentMissingError('The --zone can be provided only when an intent is provided. '
- 'Please use parameter --intent-vm-sizes to specify possible sizes of '
- 'virtual machines that can be created in the proximity placement group.')
-# endregion
-
-
def process_image_version_create_namespace(cmd, namespace):
validate_tags(namespace)
process_gallery_image_version_namespace(cmd, namespace)
diff --git a/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/ppg/__init__.py b/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/ppg/__init__.py
index 4aef6adc020..c401f439385 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/ppg/__init__.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/ppg/__init__.py
@@ -9,5 +9,8 @@
# flake8: noqa
from .__cmd_group import *
+from ._create import *
from ._delete import *
+from ._list import *
from ._show import *
+from ._update import *
diff --git a/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/ppg/_create.py b/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/ppg/_create.py
new file mode 100644
index 00000000000..fad85872acd
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/ppg/_create.py
@@ -0,0 +1,364 @@
+# --------------------------------------------------------------------------------------------
+# 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(
+ "ppg create",
+)
+class Create(AAZCommand):
+ """Create a proximity placement group.
+
+ :example: Create a proximity placement group.
+ az ppg create --name MyProximityPlacementGroup --resource-group MyResourceGroup
+
+ :example: Create a proximity placement group with specifying VM sizes that can be created.
+ az ppg create --name MyProximityPlacementGroup --resource-group MyResourceGroup --intent-vm-sizes Standard_E64s_v4 Standard_M416ms_v2
+
+ :example: Create a proximity placement group with specifying VM sizes that can be created and availability zone.
+ az ppg create --name MyProximityPlacementGroup --resource-group MyResourceGroup --intent-vm-sizes Standard_E64s_v4 Standard_M416ms_v2 --zone 1
+ """
+
+ _aaz_info = {
+ "version": "2024-07-01",
+ "resources": [
+ ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.compute/proximityplacementgroups/{}", "2024-07-01"],
+ ]
+ }
+
+ def _handler(self, command_args):
+ super()._handler(command_args)
+ 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.proximity_placement_group_name = AAZStrArg(
+ options=["-n", "--name", "--proximity-placement-group-name"],
+ help="The name of the proximity placement group.",
+ required=True,
+ )
+ _args_schema.resource_group = AAZResourceGroupNameArg(
+ required=True,
+ )
+ _args_schema.intent_vm_sizes = AAZListArg(
+ options=["--intent-vm-sizes"],
+ help="Specifies possible sizes of virtual machines that can be created in the proximity placement group.",
+ )
+ _args_schema.ppg_type = AAZStrArg(
+ options=["-t", "--type", "--ppg-type"],
+ help="The type of the proximity placement group. Allowed values: Standard.",
+ enum={"Standard": "Standard", "Ultra": "Ultra"},
+ )
+
+ intent_vm_sizes = cls._args_schema.intent_vm_sizes
+ intent_vm_sizes.Element = AAZStrArg()
+
+ # define Arg Group "Parameters"
+
+ _args_schema = cls._args_schema
+ _args_schema.location = AAZResourceLocationArg(
+ arg_group="Parameters",
+ help="Resource location",
+ required=True,
+ fmt=AAZResourceLocationArgFormat(
+ resource_group_arg="resource_group",
+ ),
+ )
+ _args_schema.tags = AAZDictArg(
+ options=["--tags"],
+ arg_group="Parameters",
+ help="Space-separated tags: key[=value] [key[=value] ...].",
+ )
+ _args_schema.zone = AAZListArg(
+ options=["-z", "--zone"],
+ arg_group="Parameters",
+ help="Specifies the Availability Zone where virtual machine, virtual machine scale set or availability set associated with the proximity placement group can be created.",
+ )
+
+ tags = cls._args_schema.tags
+ tags.Element = AAZStrArg()
+
+ zone = cls._args_schema.zone
+ zone.Element = AAZStrArg()
+
+ # define Arg Group "Properties"
+ return cls._args_schema
+
+ def _execute_operations(self):
+ self.pre_operations()
+ self.ProximityPlacementGroupsCreateOrUpdate(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.vars.instance, client_flatten=True)
+ return result
+
+ class ProximityPlacementGroupsCreateOrUpdate(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, 201]:
+ return self.on_200_201(session)
+
+ return self.on_error(session.http_response)
+
+ @property
+ def url(self):
+ return self.client.format_url(
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/proximityPlacementGroups/{proximityPlacementGroupName}",
+ **self.url_parameters
+ )
+
+ @property
+ def method(self):
+ return "PUT"
+
+ @property
+ def error_format(self):
+ return "ODataV4Format"
+
+ @property
+ def url_parameters(self):
+ parameters = {
+ **self.serialize_url_param(
+ "proximityPlacementGroupName", self.ctx.args.proximity_placement_group_name,
+ required=True,
+ ),
+ **self.serialize_url_param(
+ "resourceGroupName", self.ctx.args.resource_group,
+ 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", "2024-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,
+ typ=AAZObjectType,
+ typ_kwargs={"flags": {"required": True, "client_flatten": True}}
+ )
+ _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}})
+ _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}})
+ _builder.set_prop("tags", AAZDictType, ".tags")
+ _builder.set_prop("zones", AAZListType, ".zone")
+
+ properties = _builder.get(".properties")
+ if properties is not None:
+ properties.set_prop("intent", AAZObjectType)
+ properties.set_prop("proximityPlacementGroupType", AAZStrType, ".ppg_type")
+
+ intent = _builder.get(".properties.intent")
+ if intent is not None:
+ intent.set_prop("vmSizes", AAZListType, ".intent_vm_sizes")
+
+ vm_sizes = _builder.get(".properties.intent.vmSizes")
+ if vm_sizes is not None:
+ vm_sizes.set_elements(AAZStrType, ".")
+
+ tags = _builder.get(".tags")
+ if tags is not None:
+ tags.set_elements(AAZStrType, ".")
+
+ zones = _builder.get(".zones")
+ if zones is not None:
+ zones.set_elements(AAZStrType, ".")
+
+ return self.serialize_content(_content_value)
+
+ def on_200_201(self, session):
+ data = self.deserialize_http_content(session)
+ self.ctx.set_var(
+ "instance",
+ data,
+ schema_builder=self._build_schema_on_200_201
+ )
+
+ _schema_on_200_201 = None
+
+ @classmethod
+ def _build_schema_on_200_201(cls):
+ if cls._schema_on_200_201 is not None:
+ return cls._schema_on_200_201
+
+ cls._schema_on_200_201 = AAZObjectType()
+
+ _schema_on_200_201 = cls._schema_on_200_201
+ _schema_on_200_201.id = AAZStrType(
+ flags={"read_only": True},
+ )
+ _schema_on_200_201.location = AAZStrType(
+ flags={"required": True},
+ )
+ _schema_on_200_201.name = AAZStrType(
+ flags={"read_only": True},
+ )
+ _schema_on_200_201.properties = AAZObjectType(
+ flags={"client_flatten": True},
+ )
+ _schema_on_200_201.tags = AAZDictType()
+ _schema_on_200_201.type = AAZStrType(
+ flags={"read_only": True},
+ )
+ _schema_on_200_201.zones = AAZListType()
+
+ properties = cls._schema_on_200_201.properties
+ properties.availability_sets = AAZListType(
+ serialized_name="availabilitySets",
+ flags={"read_only": True},
+ )
+ properties.colocation_status = AAZObjectType(
+ serialized_name="colocationStatus",
+ )
+ _CreateHelper._build_schema_instance_view_status_read(properties.colocation_status)
+ properties.intent = AAZObjectType()
+ properties.proximity_placement_group_type = AAZStrType(
+ serialized_name="proximityPlacementGroupType",
+ )
+ properties.virtual_machine_scale_sets = AAZListType(
+ serialized_name="virtualMachineScaleSets",
+ flags={"read_only": True},
+ )
+ properties.virtual_machines = AAZListType(
+ serialized_name="virtualMachines",
+ flags={"read_only": True},
+ )
+
+ availability_sets = cls._schema_on_200_201.properties.availability_sets
+ availability_sets.Element = AAZObjectType()
+ _CreateHelper._build_schema_sub_resource_with_colocation_status_read(availability_sets.Element)
+
+ intent = cls._schema_on_200_201.properties.intent
+ intent.vm_sizes = AAZListType(
+ serialized_name="vmSizes",
+ )
+
+ vm_sizes = cls._schema_on_200_201.properties.intent.vm_sizes
+ vm_sizes.Element = AAZStrType()
+
+ virtual_machine_scale_sets = cls._schema_on_200_201.properties.virtual_machine_scale_sets
+ virtual_machine_scale_sets.Element = AAZObjectType()
+ _CreateHelper._build_schema_sub_resource_with_colocation_status_read(virtual_machine_scale_sets.Element)
+
+ virtual_machines = cls._schema_on_200_201.properties.virtual_machines
+ virtual_machines.Element = AAZObjectType()
+ _CreateHelper._build_schema_sub_resource_with_colocation_status_read(virtual_machines.Element)
+
+ tags = cls._schema_on_200_201.tags
+ tags.Element = AAZStrType()
+
+ zones = cls._schema_on_200_201.zones
+ zones.Element = AAZStrType()
+
+ return cls._schema_on_200_201
+
+
+class _CreateHelper:
+ """Helper class for Create"""
+
+ _schema_instance_view_status_read = None
+
+ @classmethod
+ def _build_schema_instance_view_status_read(cls, _schema):
+ if cls._schema_instance_view_status_read is not None:
+ _schema.code = cls._schema_instance_view_status_read.code
+ _schema.display_status = cls._schema_instance_view_status_read.display_status
+ _schema.level = cls._schema_instance_view_status_read.level
+ _schema.message = cls._schema_instance_view_status_read.message
+ _schema.time = cls._schema_instance_view_status_read.time
+ return
+
+ cls._schema_instance_view_status_read = _schema_instance_view_status_read = AAZObjectType()
+
+ instance_view_status_read = _schema_instance_view_status_read
+ instance_view_status_read.code = AAZStrType()
+ instance_view_status_read.display_status = AAZStrType(
+ serialized_name="displayStatus",
+ )
+ instance_view_status_read.level = AAZStrType()
+ instance_view_status_read.message = AAZStrType()
+ instance_view_status_read.time = AAZStrType()
+
+ _schema.code = cls._schema_instance_view_status_read.code
+ _schema.display_status = cls._schema_instance_view_status_read.display_status
+ _schema.level = cls._schema_instance_view_status_read.level
+ _schema.message = cls._schema_instance_view_status_read.message
+ _schema.time = cls._schema_instance_view_status_read.time
+
+ _schema_sub_resource_with_colocation_status_read = None
+
+ @classmethod
+ def _build_schema_sub_resource_with_colocation_status_read(cls, _schema):
+ if cls._schema_sub_resource_with_colocation_status_read is not None:
+ _schema.colocation_status = cls._schema_sub_resource_with_colocation_status_read.colocation_status
+ _schema.id = cls._schema_sub_resource_with_colocation_status_read.id
+ return
+
+ cls._schema_sub_resource_with_colocation_status_read = _schema_sub_resource_with_colocation_status_read = AAZObjectType()
+
+ sub_resource_with_colocation_status_read = _schema_sub_resource_with_colocation_status_read
+ sub_resource_with_colocation_status_read.colocation_status = AAZObjectType(
+ serialized_name="colocationStatus",
+ )
+ cls._build_schema_instance_view_status_read(sub_resource_with_colocation_status_read.colocation_status)
+ sub_resource_with_colocation_status_read.id = AAZStrType()
+
+ _schema.colocation_status = cls._schema_sub_resource_with_colocation_status_read.colocation_status
+ _schema.id = cls._schema_sub_resource_with_colocation_status_read.id
+
+
+__all__ = ["Create"]
diff --git a/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/ppg/_delete.py b/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/ppg/_delete.py
index 5f6b71f9dcb..e4e3b8566a1 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/ppg/_delete.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/ppg/_delete.py
@@ -19,9 +19,9 @@ class Delete(AAZCommand):
"""
_aaz_info = {
- "version": "2022-11-01",
+ "version": "2024-07-01",
"resources": [
- ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.compute/proximityplacementgroups/{}", "2022-11-01"],
+ ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.compute/proximityplacementgroups/{}", "2024-07-01"],
]
}
@@ -113,7 +113,7 @@ def url_parameters(self):
def query_parameters(self):
parameters = {
**self.serialize_query_param(
- "api-version", "2022-11-01",
+ "api-version", "2024-07-01",
required=True,
),
}
diff --git a/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/ppg/_list.py b/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/ppg/_list.py
new file mode 100644
index 00000000000..284bd72f451
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/ppg/_list.py
@@ -0,0 +1,438 @@
+# --------------------------------------------------------------------------------------------
+# 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(
+ "ppg list",
+)
+class List(AAZCommand):
+ """List proximity placement groups.
+
+ :example: List proximity placement groups.
+ az ppg list --resource-group MyResourceGroup
+ """
+
+ _aaz_info = {
+ "version": "2024-07-01",
+ "resources": [
+ ["mgmt-plane", "/subscriptions/{}/providers/microsoft.compute/proximityplacementgroups", "2024-07-01"],
+ ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.compute/proximityplacementgroups", "2024-07-01"],
+ ]
+ }
+
+ AZ_SUPPORT_PAGINATION = True
+
+ def _handler(self, command_args):
+ super()._handler(command_args)
+ return self.build_paging(self._execute_operations, 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.resource_group = AAZResourceGroupNameArg()
+ return cls._args_schema
+
+ 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
+ if condition_0:
+ self.ProximityPlacementGroupsListByResourceGroup(ctx=self.ctx)()
+ if condition_1:
+ self.ProximityPlacementGroupsListBySubscription(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.vars.instance.value, client_flatten=True)
+ next_link = self.deserialize_output(self.ctx.vars.instance.next_link)
+ return result, next_link
+
+ class ProximityPlacementGroupsListByResourceGroup(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.Compute/proximityPlacementGroups",
+ **self.url_parameters
+ )
+
+ @property
+ def method(self):
+ return "GET"
+
+ @property
+ def error_format(self):
+ return "ODataV4Format"
+
+ @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,
+ ),
+ }
+ return parameters
+
+ @property
+ def query_parameters(self):
+ parameters = {
+ **self.serialize_query_param(
+ "api-version", "2024-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()
+
+ _schema_on_200 = cls._schema_on_200
+ _schema_on_200.next_link = AAZStrType(
+ serialized_name="nextLink",
+ )
+ _schema_on_200.value = AAZListType(
+ flags={"required": True},
+ )
+
+ value = cls._schema_on_200.value
+ value.Element = AAZObjectType()
+
+ _element = cls._schema_on_200.value.Element
+ _element.id = AAZStrType(
+ flags={"read_only": True},
+ )
+ _element.location = AAZStrType(
+ flags={"required": True},
+ )
+ _element.name = AAZStrType(
+ flags={"read_only": True},
+ )
+ _element.properties = AAZObjectType(
+ flags={"client_flatten": True},
+ )
+ _element.tags = AAZDictType()
+ _element.type = AAZStrType(
+ flags={"read_only": True},
+ )
+ _element.zones = AAZListType()
+
+ properties = cls._schema_on_200.value.Element.properties
+ properties.availability_sets = AAZListType(
+ serialized_name="availabilitySets",
+ flags={"read_only": True},
+ )
+ properties.colocation_status = AAZObjectType(
+ serialized_name="colocationStatus",
+ )
+ _ListHelper._build_schema_instance_view_status_read(properties.colocation_status)
+ properties.intent = AAZObjectType()
+ properties.proximity_placement_group_type = AAZStrType(
+ serialized_name="proximityPlacementGroupType",
+ )
+ properties.virtual_machine_scale_sets = AAZListType(
+ serialized_name="virtualMachineScaleSets",
+ flags={"read_only": True},
+ )
+ properties.virtual_machines = AAZListType(
+ serialized_name="virtualMachines",
+ flags={"read_only": True},
+ )
+
+ availability_sets = cls._schema_on_200.value.Element.properties.availability_sets
+ availability_sets.Element = AAZObjectType()
+ _ListHelper._build_schema_sub_resource_with_colocation_status_read(availability_sets.Element)
+
+ intent = cls._schema_on_200.value.Element.properties.intent
+ intent.vm_sizes = AAZListType(
+ serialized_name="vmSizes",
+ )
+
+ vm_sizes = cls._schema_on_200.value.Element.properties.intent.vm_sizes
+ vm_sizes.Element = AAZStrType()
+
+ virtual_machine_scale_sets = cls._schema_on_200.value.Element.properties.virtual_machine_scale_sets
+ virtual_machine_scale_sets.Element = AAZObjectType()
+ _ListHelper._build_schema_sub_resource_with_colocation_status_read(virtual_machine_scale_sets.Element)
+
+ virtual_machines = cls._schema_on_200.value.Element.properties.virtual_machines
+ virtual_machines.Element = AAZObjectType()
+ _ListHelper._build_schema_sub_resource_with_colocation_status_read(virtual_machines.Element)
+
+ tags = cls._schema_on_200.value.Element.tags
+ tags.Element = AAZStrType()
+
+ zones = cls._schema_on_200.value.Element.zones
+ zones.Element = AAZStrType()
+
+ return cls._schema_on_200
+
+ class ProximityPlacementGroupsListBySubscription(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}/providers/Microsoft.Compute/proximityPlacementGroups",
+ **self.url_parameters
+ )
+
+ @property
+ def method(self):
+ return "GET"
+
+ @property
+ def error_format(self):
+ return "ODataV4Format"
+
+ @property
+ def url_parameters(self):
+ parameters = {
+ **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", "2024-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()
+
+ _schema_on_200 = cls._schema_on_200
+ _schema_on_200.next_link = AAZStrType(
+ serialized_name="nextLink",
+ )
+ _schema_on_200.value = AAZListType(
+ flags={"required": True},
+ )
+
+ value = cls._schema_on_200.value
+ value.Element = AAZObjectType()
+
+ _element = cls._schema_on_200.value.Element
+ _element.id = AAZStrType(
+ flags={"read_only": True},
+ )
+ _element.location = AAZStrType(
+ flags={"required": True},
+ )
+ _element.name = AAZStrType(
+ flags={"read_only": True},
+ )
+ _element.properties = AAZObjectType(
+ flags={"client_flatten": True},
+ )
+ _element.tags = AAZDictType()
+ _element.type = AAZStrType(
+ flags={"read_only": True},
+ )
+ _element.zones = AAZListType()
+
+ properties = cls._schema_on_200.value.Element.properties
+ properties.availability_sets = AAZListType(
+ serialized_name="availabilitySets",
+ flags={"read_only": True},
+ )
+ properties.colocation_status = AAZObjectType(
+ serialized_name="colocationStatus",
+ )
+ _ListHelper._build_schema_instance_view_status_read(properties.colocation_status)
+ properties.intent = AAZObjectType()
+ properties.proximity_placement_group_type = AAZStrType(
+ serialized_name="proximityPlacementGroupType",
+ )
+ properties.virtual_machine_scale_sets = AAZListType(
+ serialized_name="virtualMachineScaleSets",
+ flags={"read_only": True},
+ )
+ properties.virtual_machines = AAZListType(
+ serialized_name="virtualMachines",
+ flags={"read_only": True},
+ )
+
+ availability_sets = cls._schema_on_200.value.Element.properties.availability_sets
+ availability_sets.Element = AAZObjectType()
+ _ListHelper._build_schema_sub_resource_with_colocation_status_read(availability_sets.Element)
+
+ intent = cls._schema_on_200.value.Element.properties.intent
+ intent.vm_sizes = AAZListType(
+ serialized_name="vmSizes",
+ )
+
+ vm_sizes = cls._schema_on_200.value.Element.properties.intent.vm_sizes
+ vm_sizes.Element = AAZStrType()
+
+ virtual_machine_scale_sets = cls._schema_on_200.value.Element.properties.virtual_machine_scale_sets
+ virtual_machine_scale_sets.Element = AAZObjectType()
+ _ListHelper._build_schema_sub_resource_with_colocation_status_read(virtual_machine_scale_sets.Element)
+
+ virtual_machines = cls._schema_on_200.value.Element.properties.virtual_machines
+ virtual_machines.Element = AAZObjectType()
+ _ListHelper._build_schema_sub_resource_with_colocation_status_read(virtual_machines.Element)
+
+ tags = cls._schema_on_200.value.Element.tags
+ tags.Element = AAZStrType()
+
+ zones = cls._schema_on_200.value.Element.zones
+ zones.Element = AAZStrType()
+
+ return cls._schema_on_200
+
+
+class _ListHelper:
+ """Helper class for List"""
+
+ _schema_instance_view_status_read = None
+
+ @classmethod
+ def _build_schema_instance_view_status_read(cls, _schema):
+ if cls._schema_instance_view_status_read is not None:
+ _schema.code = cls._schema_instance_view_status_read.code
+ _schema.display_status = cls._schema_instance_view_status_read.display_status
+ _schema.level = cls._schema_instance_view_status_read.level
+ _schema.message = cls._schema_instance_view_status_read.message
+ _schema.time = cls._schema_instance_view_status_read.time
+ return
+
+ cls._schema_instance_view_status_read = _schema_instance_view_status_read = AAZObjectType()
+
+ instance_view_status_read = _schema_instance_view_status_read
+ instance_view_status_read.code = AAZStrType()
+ instance_view_status_read.display_status = AAZStrType(
+ serialized_name="displayStatus",
+ )
+ instance_view_status_read.level = AAZStrType()
+ instance_view_status_read.message = AAZStrType()
+ instance_view_status_read.time = AAZStrType()
+
+ _schema.code = cls._schema_instance_view_status_read.code
+ _schema.display_status = cls._schema_instance_view_status_read.display_status
+ _schema.level = cls._schema_instance_view_status_read.level
+ _schema.message = cls._schema_instance_view_status_read.message
+ _schema.time = cls._schema_instance_view_status_read.time
+
+ _schema_sub_resource_with_colocation_status_read = None
+
+ @classmethod
+ def _build_schema_sub_resource_with_colocation_status_read(cls, _schema):
+ if cls._schema_sub_resource_with_colocation_status_read is not None:
+ _schema.colocation_status = cls._schema_sub_resource_with_colocation_status_read.colocation_status
+ _schema.id = cls._schema_sub_resource_with_colocation_status_read.id
+ return
+
+ cls._schema_sub_resource_with_colocation_status_read = _schema_sub_resource_with_colocation_status_read = AAZObjectType()
+
+ sub_resource_with_colocation_status_read = _schema_sub_resource_with_colocation_status_read
+ sub_resource_with_colocation_status_read.colocation_status = AAZObjectType(
+ serialized_name="colocationStatus",
+ )
+ cls._build_schema_instance_view_status_read(sub_resource_with_colocation_status_read.colocation_status)
+ sub_resource_with_colocation_status_read.id = AAZStrType()
+
+ _schema.colocation_status = cls._schema_sub_resource_with_colocation_status_read.colocation_status
+ _schema.id = cls._schema_sub_resource_with_colocation_status_read.id
+
+
+__all__ = ["List"]
diff --git a/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/ppg/_show.py b/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/ppg/_show.py
index 8faf6c742d2..02283d6dee4 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/ppg/_show.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/ppg/_show.py
@@ -22,9 +22,9 @@ class Show(AAZCommand):
"""
_aaz_info = {
- "version": "2022-11-01",
+ "version": "2024-07-01",
"resources": [
- ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.compute/proximityplacementgroups/{}", "2022-11-01"],
+ ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.compute/proximityplacementgroups/{}", "2024-07-01"],
]
}
@@ -127,7 +127,7 @@ def query_parameters(self):
"includeColocationStatus", self.ctx.args.include_colocation_status,
),
**self.serialize_query_param(
- "api-version", "2022-11-01",
+ "api-version", "2024-07-01",
required=True,
),
}
diff --git a/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/ppg/_update.py b/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/ppg/_update.py
new file mode 100644
index 00000000000..b38d2dc2959
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/ppg/_update.py
@@ -0,0 +1,552 @@
+# --------------------------------------------------------------------------------------------
+# 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(
+ "ppg update",
+)
+class Update(AAZCommand):
+ """Update a proximity placement group.
+
+ :example: Update a proximity placement group with specifying VM sizes that can be created.
+ az ppg update --name MyProximityPlacementGroup --resource-group MyResourceGroup --intent-vm-sizes Standard_E64s_v4 Standard_M416ms_v2
+ """
+
+ _aaz_info = {
+ "version": "2024-07-01",
+ "resources": [
+ ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.compute/proximityplacementgroups/{}", "2024-07-01"],
+ ]
+ }
+
+ AZ_SUPPORT_GENERIC_UPDATE = True
+
+ def _handler(self, command_args):
+ super()._handler(command_args)
+ 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.proximity_placement_group_name = AAZStrArg(
+ options=["-n", "--name", "--proximity-placement-group-name"],
+ help="The name of the proximity placement group.",
+ required=True,
+ id_part="name",
+ )
+ _args_schema.resource_group = AAZResourceGroupNameArg(
+ required=True,
+ )
+ _args_schema.colocation_status = AAZObjectArg(
+ options=["--colocation-status"],
+ help="Describes colocation status of the Proximity Placement Group.",
+ nullable=True,
+ )
+ _args_schema.intent_vm_sizes = AAZListArg(
+ options=["--intent-vm-sizes"],
+ help="Specifies possible sizes of virtual machines that can be created in the proximity placement group.",
+ nullable=True,
+ )
+ _args_schema.ppg_type = AAZStrArg(
+ options=["-t", "--type", "--ppg-type"],
+ help="The type of the proximity placement group. Allowed values: Standard.",
+ nullable=True,
+ enum={"Standard": "Standard", "Ultra": "Ultra"},
+ )
+
+ colocation_status = cls._args_schema.colocation_status
+ colocation_status.code = AAZStrArg(
+ options=["code"],
+ help="The status code.",
+ nullable=True,
+ )
+ colocation_status.display_status = AAZStrArg(
+ options=["display-status"],
+ help="The short localizable label for the status.",
+ nullable=True,
+ )
+ colocation_status.level = AAZStrArg(
+ options=["level"],
+ help="The level code.",
+ nullable=True,
+ enum={"Error": "Error", "Info": "Info", "Warning": "Warning"},
+ )
+ colocation_status.message = AAZStrArg(
+ options=["message"],
+ help="The detailed status message, including for alerts and error messages.",
+ nullable=True,
+ )
+ colocation_status.time = AAZDateTimeArg(
+ options=["time"],
+ help="The time of the status.",
+ nullable=True,
+ )
+
+ intent_vm_sizes = cls._args_schema.intent_vm_sizes
+ intent_vm_sizes.Element = AAZStrArg(
+ nullable=True,
+ )
+
+ # define Arg Group "Parameters"
+
+ _args_schema = cls._args_schema
+ _args_schema.location = AAZResourceLocationArg(
+ arg_group="Parameters",
+ help="Resource location",
+ fmt=AAZResourceLocationArgFormat(
+ resource_group_arg="resource_group",
+ ),
+ )
+ _args_schema.tags = AAZDictArg(
+ options=["--tags"],
+ arg_group="Parameters",
+ help="Space-separated tags: key[=value] [key[=value] ...].",
+ nullable=True,
+ )
+ _args_schema.zone = AAZListArg(
+ options=["-z", "--zone"],
+ arg_group="Parameters",
+ help="Specifies the Availability Zone where virtual machine, virtual machine scale set or availability set associated with the proximity placement group can be created.",
+ nullable=True,
+ )
+
+ tags = cls._args_schema.tags
+ tags.Element = AAZStrArg(
+ nullable=True,
+ )
+
+ zone = cls._args_schema.zone
+ zone.Element = AAZStrArg(
+ nullable=True,
+ )
+ return cls._args_schema
+
+ def _execute_operations(self):
+ self.pre_operations()
+ self.ProximityPlacementGroupsGet(ctx=self.ctx)()
+ self.pre_instance_update(self.ctx.vars.instance)
+ self.InstanceUpdateByJson(ctx=self.ctx)()
+ self.InstanceUpdateByGeneric(ctx=self.ctx)()
+ self.post_instance_update(self.ctx.vars.instance)
+ self.ProximityPlacementGroupsCreateOrUpdate(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.vars.instance, client_flatten=True)
+ return result
+
+ class ProximityPlacementGroupsGet(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.Compute/proximityPlacementGroups/{proximityPlacementGroupName}",
+ **self.url_parameters
+ )
+
+ @property
+ def method(self):
+ return "GET"
+
+ @property
+ def error_format(self):
+ return "ODataV4Format"
+
+ @property
+ def url_parameters(self):
+ parameters = {
+ **self.serialize_url_param(
+ "proximityPlacementGroupName", self.ctx.args.proximity_placement_group_name,
+ required=True,
+ ),
+ **self.serialize_url_param(
+ "resourceGroupName", self.ctx.args.resource_group,
+ 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", "2024-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()
+ _UpdateHelper._build_schema_proximity_placement_group_read(cls._schema_on_200)
+
+ return cls._schema_on_200
+
+ class ProximityPlacementGroupsCreateOrUpdate(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, 201]:
+ return self.on_200_201(session)
+
+ return self.on_error(session.http_response)
+
+ @property
+ def url(self):
+ return self.client.format_url(
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/proximityPlacementGroups/{proximityPlacementGroupName}",
+ **self.url_parameters
+ )
+
+ @property
+ def method(self):
+ return "PUT"
+
+ @property
+ def error_format(self):
+ return "ODataV4Format"
+
+ @property
+ def url_parameters(self):
+ parameters = {
+ **self.serialize_url_param(
+ "proximityPlacementGroupName", self.ctx.args.proximity_placement_group_name,
+ required=True,
+ ),
+ **self.serialize_url_param(
+ "resourceGroupName", self.ctx.args.resource_group,
+ 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", "2024-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_201(self, session):
+ data = self.deserialize_http_content(session)
+ self.ctx.set_var(
+ "instance",
+ data,
+ schema_builder=self._build_schema_on_200_201
+ )
+
+ _schema_on_200_201 = None
+
+ @classmethod
+ def _build_schema_on_200_201(cls):
+ if cls._schema_on_200_201 is not None:
+ return cls._schema_on_200_201
+
+ cls._schema_on_200_201 = AAZObjectType()
+ _UpdateHelper._build_schema_proximity_placement_group_read(cls._schema_on_200_201)
+
+ return cls._schema_on_200_201
+
+ class InstanceUpdateByJson(AAZJsonInstanceUpdateOperation):
+
+ def __call__(self, *args, **kwargs):
+ self._update_instance(self.ctx.vars.instance)
+
+ def _update_instance(self, instance):
+ _instance_value, _builder = self.new_content_builder(
+ self.ctx.args,
+ value=instance,
+ typ=AAZObjectType
+ )
+ _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}})
+ _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}})
+ _builder.set_prop("tags", AAZDictType, ".tags")
+ _builder.set_prop("zones", AAZListType, ".zone")
+
+ properties = _builder.get(".properties")
+ if properties is not None:
+ properties.set_prop("colocationStatus", AAZObjectType, ".colocation_status")
+ properties.set_prop("intent", AAZObjectType)
+ properties.set_prop("proximityPlacementGroupType", AAZStrType, ".ppg_type")
+
+ colocation_status = _builder.get(".properties.colocationStatus")
+ if colocation_status is not None:
+ colocation_status.set_prop("code", AAZStrType, ".code")
+ colocation_status.set_prop("displayStatus", AAZStrType, ".display_status")
+ colocation_status.set_prop("level", AAZStrType, ".level")
+ colocation_status.set_prop("message", AAZStrType, ".message")
+ colocation_status.set_prop("time", AAZStrType, ".time")
+
+ intent = _builder.get(".properties.intent")
+ if intent is not None:
+ intent.set_prop("vmSizes", AAZListType, ".intent_vm_sizes")
+
+ vm_sizes = _builder.get(".properties.intent.vmSizes")
+ if vm_sizes is not None:
+ vm_sizes.set_elements(AAZStrType, ".")
+
+ tags = _builder.get(".tags")
+ if tags is not None:
+ tags.set_elements(AAZStrType, ".")
+
+ zones = _builder.get(".zones")
+ if zones is not None:
+ zones.set_elements(AAZStrType, ".")
+
+ return _instance_value
+
+ class InstanceUpdateByGeneric(AAZGenericInstanceUpdateOperation):
+
+ def __call__(self, *args, **kwargs):
+ self._update_instance_by_generic(
+ self.ctx.vars.instance,
+ self.ctx.generic_update_args
+ )
+
+
+class _UpdateHelper:
+ """Helper class for Update"""
+
+ _schema_instance_view_status_read = None
+
+ @classmethod
+ def _build_schema_instance_view_status_read(cls, _schema):
+ if cls._schema_instance_view_status_read is not None:
+ _schema.code = cls._schema_instance_view_status_read.code
+ _schema.display_status = cls._schema_instance_view_status_read.display_status
+ _schema.level = cls._schema_instance_view_status_read.level
+ _schema.message = cls._schema_instance_view_status_read.message
+ _schema.time = cls._schema_instance_view_status_read.time
+ return
+
+ cls._schema_instance_view_status_read = _schema_instance_view_status_read = AAZObjectType()
+
+ instance_view_status_read = _schema_instance_view_status_read
+ instance_view_status_read.code = AAZStrType()
+ instance_view_status_read.display_status = AAZStrType(
+ serialized_name="displayStatus",
+ )
+ instance_view_status_read.level = AAZStrType()
+ instance_view_status_read.message = AAZStrType()
+ instance_view_status_read.time = AAZStrType()
+
+ _schema.code = cls._schema_instance_view_status_read.code
+ _schema.display_status = cls._schema_instance_view_status_read.display_status
+ _schema.level = cls._schema_instance_view_status_read.level
+ _schema.message = cls._schema_instance_view_status_read.message
+ _schema.time = cls._schema_instance_view_status_read.time
+
+ _schema_proximity_placement_group_read = None
+
+ @classmethod
+ def _build_schema_proximity_placement_group_read(cls, _schema):
+ if cls._schema_proximity_placement_group_read is not None:
+ _schema.id = cls._schema_proximity_placement_group_read.id
+ _schema.location = cls._schema_proximity_placement_group_read.location
+ _schema.name = cls._schema_proximity_placement_group_read.name
+ _schema.properties = cls._schema_proximity_placement_group_read.properties
+ _schema.tags = cls._schema_proximity_placement_group_read.tags
+ _schema.type = cls._schema_proximity_placement_group_read.type
+ _schema.zones = cls._schema_proximity_placement_group_read.zones
+ return
+
+ cls._schema_proximity_placement_group_read = _schema_proximity_placement_group_read = AAZObjectType()
+
+ proximity_placement_group_read = _schema_proximity_placement_group_read
+ proximity_placement_group_read.id = AAZStrType(
+ flags={"read_only": True},
+ )
+ proximity_placement_group_read.location = AAZStrType(
+ flags={"required": True},
+ )
+ proximity_placement_group_read.name = AAZStrType(
+ flags={"read_only": True},
+ )
+ proximity_placement_group_read.properties = AAZObjectType(
+ flags={"client_flatten": True},
+ )
+ proximity_placement_group_read.tags = AAZDictType()
+ proximity_placement_group_read.type = AAZStrType(
+ flags={"read_only": True},
+ )
+ proximity_placement_group_read.zones = AAZListType()
+
+ properties = _schema_proximity_placement_group_read.properties
+ properties.availability_sets = AAZListType(
+ serialized_name="availabilitySets",
+ flags={"read_only": True},
+ )
+ properties.colocation_status = AAZObjectType(
+ serialized_name="colocationStatus",
+ )
+ cls._build_schema_instance_view_status_read(properties.colocation_status)
+ properties.intent = AAZObjectType()
+ properties.proximity_placement_group_type = AAZStrType(
+ serialized_name="proximityPlacementGroupType",
+ )
+ properties.virtual_machine_scale_sets = AAZListType(
+ serialized_name="virtualMachineScaleSets",
+ flags={"read_only": True},
+ )
+ properties.virtual_machines = AAZListType(
+ serialized_name="virtualMachines",
+ flags={"read_only": True},
+ )
+
+ availability_sets = _schema_proximity_placement_group_read.properties.availability_sets
+ availability_sets.Element = AAZObjectType()
+ cls._build_schema_sub_resource_with_colocation_status_read(availability_sets.Element)
+
+ intent = _schema_proximity_placement_group_read.properties.intent
+ intent.vm_sizes = AAZListType(
+ serialized_name="vmSizes",
+ )
+
+ vm_sizes = _schema_proximity_placement_group_read.properties.intent.vm_sizes
+ vm_sizes.Element = AAZStrType()
+
+ virtual_machine_scale_sets = _schema_proximity_placement_group_read.properties.virtual_machine_scale_sets
+ virtual_machine_scale_sets.Element = AAZObjectType()
+ cls._build_schema_sub_resource_with_colocation_status_read(virtual_machine_scale_sets.Element)
+
+ virtual_machines = _schema_proximity_placement_group_read.properties.virtual_machines
+ virtual_machines.Element = AAZObjectType()
+ cls._build_schema_sub_resource_with_colocation_status_read(virtual_machines.Element)
+
+ tags = _schema_proximity_placement_group_read.tags
+ tags.Element = AAZStrType()
+
+ zones = _schema_proximity_placement_group_read.zones
+ zones.Element = AAZStrType()
+
+ _schema.id = cls._schema_proximity_placement_group_read.id
+ _schema.location = cls._schema_proximity_placement_group_read.location
+ _schema.name = cls._schema_proximity_placement_group_read.name
+ _schema.properties = cls._schema_proximity_placement_group_read.properties
+ _schema.tags = cls._schema_proximity_placement_group_read.tags
+ _schema.type = cls._schema_proximity_placement_group_read.type
+ _schema.zones = cls._schema_proximity_placement_group_read.zones
+
+ _schema_sub_resource_with_colocation_status_read = None
+
+ @classmethod
+ def _build_schema_sub_resource_with_colocation_status_read(cls, _schema):
+ if cls._schema_sub_resource_with_colocation_status_read is not None:
+ _schema.colocation_status = cls._schema_sub_resource_with_colocation_status_read.colocation_status
+ _schema.id = cls._schema_sub_resource_with_colocation_status_read.id
+ return
+
+ cls._schema_sub_resource_with_colocation_status_read = _schema_sub_resource_with_colocation_status_read = AAZObjectType()
+
+ sub_resource_with_colocation_status_read = _schema_sub_resource_with_colocation_status_read
+ sub_resource_with_colocation_status_read.colocation_status = AAZObjectType(
+ serialized_name="colocationStatus",
+ )
+ cls._build_schema_instance_view_status_read(sub_resource_with_colocation_status_read.colocation_status)
+ sub_resource_with_colocation_status_read.id = AAZStrType()
+
+ _schema.colocation_status = cls._schema_sub_resource_with_colocation_status_read.colocation_status
+ _schema.id = cls._schema_sub_resource_with_colocation_status_read.id
+
+
+__all__ = ["Update"]
diff --git a/src/azure-cli/azure/cli/command_modules/vm/aaz/profile_2020_09_01_hybrid/ppg/__init__.py b/src/azure-cli/azure/cli/command_modules/vm/aaz/profile_2020_09_01_hybrid/ppg/__init__.py
index 4aef6adc020..c401f439385 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/aaz/profile_2020_09_01_hybrid/ppg/__init__.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/aaz/profile_2020_09_01_hybrid/ppg/__init__.py
@@ -9,5 +9,8 @@
# flake8: noqa
from .__cmd_group import *
+from ._create import *
from ._delete import *
+from ._list import *
from ._show import *
+from ._update import *
diff --git a/src/azure-cli/azure/cli/command_modules/vm/aaz/profile_2020_09_01_hybrid/ppg/_create.py b/src/azure-cli/azure/cli/command_modules/vm/aaz/profile_2020_09_01_hybrid/ppg/_create.py
new file mode 100644
index 00000000000..7993036bf47
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/vm/aaz/profile_2020_09_01_hybrid/ppg/_create.py
@@ -0,0 +1,322 @@
+# --------------------------------------------------------------------------------------------
+# 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(
+ "ppg create",
+)
+class Create(AAZCommand):
+ """Create a proximity placement group.
+
+ :example: Create a proximity placement group.
+ az ppg create --name MyProximityPlacementGroup --resource-group MyResourceGroup
+
+ :example: Create a proximity placement group with specifying VM sizes that can be created.
+ az ppg create --name MyProximityPlacementGroup --resource-group MyResourceGroup --intent-vm-sizes Standard_E64s_v4 Standard_M416ms_v2
+
+ :example: Create a proximity placement group with specifying VM sizes that can be created and availability zone.
+ az ppg create --name MyProximityPlacementGroup --resource-group MyResourceGroup --intent-vm-sizes Standard_E64s_v4 Standard_M416ms_v2 --zone 1
+ """
+
+ _aaz_info = {
+ "version": "2020-06-01",
+ "resources": [
+ ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.compute/proximityplacementgroups/{}", "2020-06-01"],
+ ]
+ }
+
+ def _handler(self, command_args):
+ super()._handler(command_args)
+ 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.proximity_placement_group_name = AAZStrArg(
+ options=["-n", "--name", "--proximity-placement-group-name"],
+ help="The name of the proximity placement group.",
+ required=True,
+ )
+ _args_schema.resource_group = AAZResourceGroupNameArg(
+ required=True,
+ )
+ _args_schema.ppg_type = AAZStrArg(
+ options=["-t", "--type", "--ppg-type"],
+ help="The type of the proximity placement group. Allowed values: Standard.",
+ enum={"Standard": "Standard", "Ultra": "Ultra"},
+ )
+
+ # define Arg Group "Parameters"
+
+ _args_schema = cls._args_schema
+ _args_schema.location = AAZResourceLocationArg(
+ arg_group="Parameters",
+ help="Resource location",
+ required=True,
+ fmt=AAZResourceLocationArgFormat(
+ resource_group_arg="resource_group",
+ ),
+ )
+ _args_schema.tags = AAZDictArg(
+ options=["--tags"],
+ arg_group="Parameters",
+ help="Space-separated tags: key[=value] [key[=value] ...].",
+ )
+
+ tags = cls._args_schema.tags
+ tags.Element = AAZStrArg()
+
+ # define Arg Group "Properties"
+ return cls._args_schema
+
+ def _execute_operations(self):
+ self.pre_operations()
+ self.ProximityPlacementGroupsCreateOrUpdate(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.vars.instance, client_flatten=True)
+ return result
+
+ class ProximityPlacementGroupsCreateOrUpdate(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, 201]:
+ return self.on_200_201(session)
+
+ return self.on_error(session.http_response)
+
+ @property
+ def url(self):
+ return self.client.format_url(
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/proximityPlacementGroups/{proximityPlacementGroupName}",
+ **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(
+ "proximityPlacementGroupName", self.ctx.args.proximity_placement_group_name,
+ required=True,
+ ),
+ **self.serialize_url_param(
+ "resourceGroupName", self.ctx.args.resource_group,
+ 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", "2020-06-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,
+ typ=AAZObjectType,
+ typ_kwargs={"flags": {"required": True, "client_flatten": True}}
+ )
+ _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}})
+ _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}})
+ _builder.set_prop("tags", AAZDictType, ".tags")
+
+ properties = _builder.get(".properties")
+ if properties is not None:
+ properties.set_prop("proximityPlacementGroupType", AAZStrType, ".ppg_type")
+
+ tags = _builder.get(".tags")
+ if tags is not None:
+ tags.set_elements(AAZStrType, ".")
+
+ return self.serialize_content(_content_value)
+
+ def on_200_201(self, session):
+ data = self.deserialize_http_content(session)
+ self.ctx.set_var(
+ "instance",
+ data,
+ schema_builder=self._build_schema_on_200_201
+ )
+
+ _schema_on_200_201 = None
+
+ @classmethod
+ def _build_schema_on_200_201(cls):
+ if cls._schema_on_200_201 is not None:
+ return cls._schema_on_200_201
+
+ cls._schema_on_200_201 = AAZObjectType()
+
+ _schema_on_200_201 = cls._schema_on_200_201
+ _schema_on_200_201.id = AAZStrType(
+ flags={"read_only": True},
+ )
+ _schema_on_200_201.location = AAZStrType(
+ flags={"required": True},
+ )
+ _schema_on_200_201.name = AAZStrType(
+ flags={"read_only": True},
+ )
+ _schema_on_200_201.properties = AAZObjectType(
+ flags={"client_flatten": True},
+ )
+ _schema_on_200_201.tags = AAZDictType()
+ _schema_on_200_201.type = AAZStrType(
+ flags={"read_only": True},
+ )
+
+ properties = cls._schema_on_200_201.properties
+ properties.availability_sets = AAZListType(
+ serialized_name="availabilitySets",
+ flags={"read_only": True},
+ )
+ properties.colocation_status = AAZObjectType(
+ serialized_name="colocationStatus",
+ )
+ _CreateHelper._build_schema_instance_view_status_read(properties.colocation_status)
+ properties.proximity_placement_group_type = AAZStrType(
+ serialized_name="proximityPlacementGroupType",
+ )
+ properties.virtual_machine_scale_sets = AAZListType(
+ serialized_name="virtualMachineScaleSets",
+ flags={"read_only": True},
+ )
+ properties.virtual_machines = AAZListType(
+ serialized_name="virtualMachines",
+ flags={"read_only": True},
+ )
+
+ availability_sets = cls._schema_on_200_201.properties.availability_sets
+ availability_sets.Element = AAZObjectType()
+ _CreateHelper._build_schema_sub_resource_with_colocation_status_read(availability_sets.Element)
+
+ virtual_machine_scale_sets = cls._schema_on_200_201.properties.virtual_machine_scale_sets
+ virtual_machine_scale_sets.Element = AAZObjectType()
+ _CreateHelper._build_schema_sub_resource_with_colocation_status_read(virtual_machine_scale_sets.Element)
+
+ virtual_machines = cls._schema_on_200_201.properties.virtual_machines
+ virtual_machines.Element = AAZObjectType()
+ _CreateHelper._build_schema_sub_resource_with_colocation_status_read(virtual_machines.Element)
+
+ tags = cls._schema_on_200_201.tags
+ tags.Element = AAZStrType()
+
+ return cls._schema_on_200_201
+
+
+class _CreateHelper:
+ """Helper class for Create"""
+
+ _schema_instance_view_status_read = None
+
+ @classmethod
+ def _build_schema_instance_view_status_read(cls, _schema):
+ if cls._schema_instance_view_status_read is not None:
+ _schema.code = cls._schema_instance_view_status_read.code
+ _schema.display_status = cls._schema_instance_view_status_read.display_status
+ _schema.level = cls._schema_instance_view_status_read.level
+ _schema.message = cls._schema_instance_view_status_read.message
+ _schema.time = cls._schema_instance_view_status_read.time
+ return
+
+ cls._schema_instance_view_status_read = _schema_instance_view_status_read = AAZObjectType()
+
+ instance_view_status_read = _schema_instance_view_status_read
+ instance_view_status_read.code = AAZStrType()
+ instance_view_status_read.display_status = AAZStrType(
+ serialized_name="displayStatus",
+ )
+ instance_view_status_read.level = AAZStrType()
+ instance_view_status_read.message = AAZStrType()
+ instance_view_status_read.time = AAZStrType()
+
+ _schema.code = cls._schema_instance_view_status_read.code
+ _schema.display_status = cls._schema_instance_view_status_read.display_status
+ _schema.level = cls._schema_instance_view_status_read.level
+ _schema.message = cls._schema_instance_view_status_read.message
+ _schema.time = cls._schema_instance_view_status_read.time
+
+ _schema_sub_resource_with_colocation_status_read = None
+
+ @classmethod
+ def _build_schema_sub_resource_with_colocation_status_read(cls, _schema):
+ if cls._schema_sub_resource_with_colocation_status_read is not None:
+ _schema.colocation_status = cls._schema_sub_resource_with_colocation_status_read.colocation_status
+ _schema.id = cls._schema_sub_resource_with_colocation_status_read.id
+ return
+
+ cls._schema_sub_resource_with_colocation_status_read = _schema_sub_resource_with_colocation_status_read = AAZObjectType()
+
+ sub_resource_with_colocation_status_read = _schema_sub_resource_with_colocation_status_read
+ sub_resource_with_colocation_status_read.colocation_status = AAZObjectType(
+ serialized_name="colocationStatus",
+ )
+ cls._build_schema_instance_view_status_read(sub_resource_with_colocation_status_read.colocation_status)
+ sub_resource_with_colocation_status_read.id = AAZStrType()
+
+ _schema.colocation_status = cls._schema_sub_resource_with_colocation_status_read.colocation_status
+ _schema.id = cls._schema_sub_resource_with_colocation_status_read.id
+
+
+__all__ = ["Create"]
diff --git a/src/azure-cli/azure/cli/command_modules/vm/aaz/profile_2020_09_01_hybrid/ppg/_delete.py b/src/azure-cli/azure/cli/command_modules/vm/aaz/profile_2020_09_01_hybrid/ppg/_delete.py
index 5f6b71f9dcb..7cf11d3bdf0 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/aaz/profile_2020_09_01_hybrid/ppg/_delete.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/aaz/profile_2020_09_01_hybrid/ppg/_delete.py
@@ -19,9 +19,9 @@ class Delete(AAZCommand):
"""
_aaz_info = {
- "version": "2022-11-01",
+ "version": "2020-06-01",
"resources": [
- ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.compute/proximityplacementgroups/{}", "2022-11-01"],
+ ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.compute/proximityplacementgroups/{}", "2020-06-01"],
]
}
@@ -89,7 +89,7 @@ def method(self):
@property
def error_format(self):
- return "ODataV4Format"
+ return "MgmtErrorFormat"
@property
def url_parameters(self):
@@ -113,7 +113,7 @@ def url_parameters(self):
def query_parameters(self):
parameters = {
**self.serialize_query_param(
- "api-version", "2022-11-01",
+ "api-version", "2020-06-01",
required=True,
),
}
diff --git a/src/azure-cli/azure/cli/command_modules/vm/aaz/profile_2020_09_01_hybrid/ppg/_list.py b/src/azure-cli/azure/cli/command_modules/vm/aaz/profile_2020_09_01_hybrid/ppg/_list.py
new file mode 100644
index 00000000000..031882264ea
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/vm/aaz/profile_2020_09_01_hybrid/ppg/_list.py
@@ -0,0 +1,412 @@
+# --------------------------------------------------------------------------------------------
+# 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(
+ "ppg list",
+)
+class List(AAZCommand):
+ """List proximity placement groups.
+
+ :example: List proximity placement groups.
+ az ppg list --resource-group MyResourceGroup
+ """
+
+ _aaz_info = {
+ "version": "2020-06-01",
+ "resources": [
+ ["mgmt-plane", "/subscriptions/{}/providers/microsoft.compute/proximityplacementgroups", "2020-06-01"],
+ ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.compute/proximityplacementgroups", "2020-06-01"],
+ ]
+ }
+
+ AZ_SUPPORT_PAGINATION = True
+
+ def _handler(self, command_args):
+ super()._handler(command_args)
+ return self.build_paging(self._execute_operations, 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.resource_group = AAZResourceGroupNameArg()
+ return cls._args_schema
+
+ 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
+ if condition_0:
+ self.ProximityPlacementGroupsListByResourceGroup(ctx=self.ctx)()
+ if condition_1:
+ self.ProximityPlacementGroupsListBySubscription(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.vars.instance.value, client_flatten=True)
+ next_link = self.deserialize_output(self.ctx.vars.instance.next_link)
+ return result, next_link
+
+ class ProximityPlacementGroupsListByResourceGroup(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.Compute/proximityPlacementGroups",
+ **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(
+ "resourceGroupName", self.ctx.args.resource_group,
+ 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", "2020-06-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()
+
+ _schema_on_200 = cls._schema_on_200
+ _schema_on_200.next_link = AAZStrType(
+ serialized_name="nextLink",
+ )
+ _schema_on_200.value = AAZListType(
+ flags={"required": True},
+ )
+
+ value = cls._schema_on_200.value
+ value.Element = AAZObjectType()
+
+ _element = cls._schema_on_200.value.Element
+ _element.id = AAZStrType(
+ flags={"read_only": True},
+ )
+ _element.location = AAZStrType(
+ flags={"required": True},
+ )
+ _element.name = AAZStrType(
+ flags={"read_only": True},
+ )
+ _element.properties = AAZObjectType(
+ flags={"client_flatten": True},
+ )
+ _element.tags = AAZDictType()
+ _element.type = AAZStrType(
+ flags={"read_only": True},
+ )
+
+ properties = cls._schema_on_200.value.Element.properties
+ properties.availability_sets = AAZListType(
+ serialized_name="availabilitySets",
+ flags={"read_only": True},
+ )
+ properties.colocation_status = AAZObjectType(
+ serialized_name="colocationStatus",
+ )
+ _ListHelper._build_schema_instance_view_status_read(properties.colocation_status)
+ properties.proximity_placement_group_type = AAZStrType(
+ serialized_name="proximityPlacementGroupType",
+ )
+ properties.virtual_machine_scale_sets = AAZListType(
+ serialized_name="virtualMachineScaleSets",
+ flags={"read_only": True},
+ )
+ properties.virtual_machines = AAZListType(
+ serialized_name="virtualMachines",
+ flags={"read_only": True},
+ )
+
+ availability_sets = cls._schema_on_200.value.Element.properties.availability_sets
+ availability_sets.Element = AAZObjectType()
+ _ListHelper._build_schema_sub_resource_with_colocation_status_read(availability_sets.Element)
+
+ virtual_machine_scale_sets = cls._schema_on_200.value.Element.properties.virtual_machine_scale_sets
+ virtual_machine_scale_sets.Element = AAZObjectType()
+ _ListHelper._build_schema_sub_resource_with_colocation_status_read(virtual_machine_scale_sets.Element)
+
+ virtual_machines = cls._schema_on_200.value.Element.properties.virtual_machines
+ virtual_machines.Element = AAZObjectType()
+ _ListHelper._build_schema_sub_resource_with_colocation_status_read(virtual_machines.Element)
+
+ tags = cls._schema_on_200.value.Element.tags
+ tags.Element = AAZStrType()
+
+ return cls._schema_on_200
+
+ class ProximityPlacementGroupsListBySubscription(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}/providers/Microsoft.Compute/proximityPlacementGroups",
+ **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(
+ "subscriptionId", self.ctx.subscription_id,
+ required=True,
+ ),
+ }
+ return parameters
+
+ @property
+ def query_parameters(self):
+ parameters = {
+ **self.serialize_query_param(
+ "api-version", "2020-06-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()
+
+ _schema_on_200 = cls._schema_on_200
+ _schema_on_200.next_link = AAZStrType(
+ serialized_name="nextLink",
+ )
+ _schema_on_200.value = AAZListType(
+ flags={"required": True},
+ )
+
+ value = cls._schema_on_200.value
+ value.Element = AAZObjectType()
+
+ _element = cls._schema_on_200.value.Element
+ _element.id = AAZStrType(
+ flags={"read_only": True},
+ )
+ _element.location = AAZStrType(
+ flags={"required": True},
+ )
+ _element.name = AAZStrType(
+ flags={"read_only": True},
+ )
+ _element.properties = AAZObjectType(
+ flags={"client_flatten": True},
+ )
+ _element.tags = AAZDictType()
+ _element.type = AAZStrType(
+ flags={"read_only": True},
+ )
+
+ properties = cls._schema_on_200.value.Element.properties
+ properties.availability_sets = AAZListType(
+ serialized_name="availabilitySets",
+ flags={"read_only": True},
+ )
+ properties.colocation_status = AAZObjectType(
+ serialized_name="colocationStatus",
+ )
+ _ListHelper._build_schema_instance_view_status_read(properties.colocation_status)
+ properties.proximity_placement_group_type = AAZStrType(
+ serialized_name="proximityPlacementGroupType",
+ )
+ properties.virtual_machine_scale_sets = AAZListType(
+ serialized_name="virtualMachineScaleSets",
+ flags={"read_only": True},
+ )
+ properties.virtual_machines = AAZListType(
+ serialized_name="virtualMachines",
+ flags={"read_only": True},
+ )
+
+ availability_sets = cls._schema_on_200.value.Element.properties.availability_sets
+ availability_sets.Element = AAZObjectType()
+ _ListHelper._build_schema_sub_resource_with_colocation_status_read(availability_sets.Element)
+
+ virtual_machine_scale_sets = cls._schema_on_200.value.Element.properties.virtual_machine_scale_sets
+ virtual_machine_scale_sets.Element = AAZObjectType()
+ _ListHelper._build_schema_sub_resource_with_colocation_status_read(virtual_machine_scale_sets.Element)
+
+ virtual_machines = cls._schema_on_200.value.Element.properties.virtual_machines
+ virtual_machines.Element = AAZObjectType()
+ _ListHelper._build_schema_sub_resource_with_colocation_status_read(virtual_machines.Element)
+
+ tags = cls._schema_on_200.value.Element.tags
+ tags.Element = AAZStrType()
+
+ return cls._schema_on_200
+
+
+class _ListHelper:
+ """Helper class for List"""
+
+ _schema_instance_view_status_read = None
+
+ @classmethod
+ def _build_schema_instance_view_status_read(cls, _schema):
+ if cls._schema_instance_view_status_read is not None:
+ _schema.code = cls._schema_instance_view_status_read.code
+ _schema.display_status = cls._schema_instance_view_status_read.display_status
+ _schema.level = cls._schema_instance_view_status_read.level
+ _schema.message = cls._schema_instance_view_status_read.message
+ _schema.time = cls._schema_instance_view_status_read.time
+ return
+
+ cls._schema_instance_view_status_read = _schema_instance_view_status_read = AAZObjectType()
+
+ instance_view_status_read = _schema_instance_view_status_read
+ instance_view_status_read.code = AAZStrType()
+ instance_view_status_read.display_status = AAZStrType(
+ serialized_name="displayStatus",
+ )
+ instance_view_status_read.level = AAZStrType()
+ instance_view_status_read.message = AAZStrType()
+ instance_view_status_read.time = AAZStrType()
+
+ _schema.code = cls._schema_instance_view_status_read.code
+ _schema.display_status = cls._schema_instance_view_status_read.display_status
+ _schema.level = cls._schema_instance_view_status_read.level
+ _schema.message = cls._schema_instance_view_status_read.message
+ _schema.time = cls._schema_instance_view_status_read.time
+
+ _schema_sub_resource_with_colocation_status_read = None
+
+ @classmethod
+ def _build_schema_sub_resource_with_colocation_status_read(cls, _schema):
+ if cls._schema_sub_resource_with_colocation_status_read is not None:
+ _schema.colocation_status = cls._schema_sub_resource_with_colocation_status_read.colocation_status
+ _schema.id = cls._schema_sub_resource_with_colocation_status_read.id
+ return
+
+ cls._schema_sub_resource_with_colocation_status_read = _schema_sub_resource_with_colocation_status_read = AAZObjectType()
+
+ sub_resource_with_colocation_status_read = _schema_sub_resource_with_colocation_status_read
+ sub_resource_with_colocation_status_read.colocation_status = AAZObjectType(
+ serialized_name="colocationStatus",
+ )
+ cls._build_schema_instance_view_status_read(sub_resource_with_colocation_status_read.colocation_status)
+ sub_resource_with_colocation_status_read.id = AAZStrType()
+
+ _schema.colocation_status = cls._schema_sub_resource_with_colocation_status_read.colocation_status
+ _schema.id = cls._schema_sub_resource_with_colocation_status_read.id
+
+
+__all__ = ["List"]
diff --git a/src/azure-cli/azure/cli/command_modules/vm/aaz/profile_2020_09_01_hybrid/ppg/_show.py b/src/azure-cli/azure/cli/command_modules/vm/aaz/profile_2020_09_01_hybrid/ppg/_show.py
index 8faf6c742d2..80b570596b3 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/aaz/profile_2020_09_01_hybrid/ppg/_show.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/aaz/profile_2020_09_01_hybrid/ppg/_show.py
@@ -22,9 +22,9 @@ class Show(AAZCommand):
"""
_aaz_info = {
- "version": "2022-11-01",
+ "version": "2020-06-01",
"resources": [
- ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.compute/proximityplacementgroups/{}", "2022-11-01"],
+ ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.compute/proximityplacementgroups/{}", "2020-06-01"],
]
}
@@ -100,7 +100,7 @@ def method(self):
@property
def error_format(self):
- return "ODataV4Format"
+ return "MgmtErrorFormat"
@property
def url_parameters(self):
@@ -127,7 +127,7 @@ def query_parameters(self):
"includeColocationStatus", self.ctx.args.include_colocation_status,
),
**self.serialize_query_param(
- "api-version", "2022-11-01",
+ "api-version", "2020-06-01",
required=True,
),
}
@@ -176,7 +176,6 @@ def _build_schema_on_200(cls):
_schema_on_200.type = AAZStrType(
flags={"read_only": True},
)
- _schema_on_200.zones = AAZListType()
properties = cls._schema_on_200.properties
properties.availability_sets = AAZListType(
@@ -187,7 +186,6 @@ def _build_schema_on_200(cls):
serialized_name="colocationStatus",
)
_ShowHelper._build_schema_instance_view_status_read(properties.colocation_status)
- properties.intent = AAZObjectType()
properties.proximity_placement_group_type = AAZStrType(
serialized_name="proximityPlacementGroupType",
)
@@ -204,14 +202,6 @@ def _build_schema_on_200(cls):
availability_sets.Element = AAZObjectType()
_ShowHelper._build_schema_sub_resource_with_colocation_status_read(availability_sets.Element)
- intent = cls._schema_on_200.properties.intent
- intent.vm_sizes = AAZListType(
- serialized_name="vmSizes",
- )
-
- vm_sizes = cls._schema_on_200.properties.intent.vm_sizes
- vm_sizes.Element = AAZStrType()
-
virtual_machine_scale_sets = cls._schema_on_200.properties.virtual_machine_scale_sets
virtual_machine_scale_sets.Element = AAZObjectType()
_ShowHelper._build_schema_sub_resource_with_colocation_status_read(virtual_machine_scale_sets.Element)
@@ -223,9 +213,6 @@ def _build_schema_on_200(cls):
tags = cls._schema_on_200.tags
tags.Element = AAZStrType()
- zones = cls._schema_on_200.zones
- zones.Element = AAZStrType()
-
return cls._schema_on_200
diff --git a/src/azure-cli/azure/cli/command_modules/vm/aaz/profile_2020_09_01_hybrid/ppg/_update.py b/src/azure-cli/azure/cli/command_modules/vm/aaz/profile_2020_09_01_hybrid/ppg/_update.py
new file mode 100644
index 00000000000..4238e4f0ac1
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/vm/aaz/profile_2020_09_01_hybrid/ppg/_update.py
@@ -0,0 +1,502 @@
+# --------------------------------------------------------------------------------------------
+# 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(
+ "ppg update",
+)
+class Update(AAZCommand):
+ """Update a proximity placement group.
+
+ :example: Update a proximity placement group with specifying VM sizes that can be created.
+ az ppg update --name MyProximityPlacementGroup --resource-group MyResourceGroup --intent-vm-sizes Standard_E64s_v4 Standard_M416ms_v2
+ """
+
+ _aaz_info = {
+ "version": "2020-06-01",
+ "resources": [
+ ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.compute/proximityplacementgroups/{}", "2020-06-01"],
+ ]
+ }
+
+ AZ_SUPPORT_GENERIC_UPDATE = True
+
+ def _handler(self, command_args):
+ super()._handler(command_args)
+ 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.proximity_placement_group_name = AAZStrArg(
+ options=["-n", "--name", "--proximity-placement-group-name"],
+ help="The name of the proximity placement group.",
+ required=True,
+ id_part="name",
+ )
+ _args_schema.resource_group = AAZResourceGroupNameArg(
+ required=True,
+ )
+ _args_schema.colocation_status = AAZObjectArg(
+ options=["--colocation-status"],
+ help="Describes colocation status of the Proximity Placement Group.",
+ nullable=True,
+ )
+ _args_schema.ppg_type = AAZStrArg(
+ options=["-t", "--type", "--ppg-type"],
+ help="The type of the proximity placement group. Allowed values: Standard.",
+ nullable=True,
+ enum={"Standard": "Standard", "Ultra": "Ultra"},
+ )
+
+ colocation_status = cls._args_schema.colocation_status
+ colocation_status.code = AAZStrArg(
+ options=["code"],
+ help="The status code.",
+ nullable=True,
+ )
+ colocation_status.display_status = AAZStrArg(
+ options=["display-status"],
+ help="The short localizable label for the status.",
+ nullable=True,
+ )
+ colocation_status.level = AAZStrArg(
+ options=["level"],
+ help="The level code.",
+ nullable=True,
+ enum={"Error": "Error", "Info": "Info", "Warning": "Warning"},
+ )
+ colocation_status.message = AAZStrArg(
+ options=["message"],
+ help="The detailed status message, including for alerts and error messages.",
+ nullable=True,
+ )
+ colocation_status.time = AAZDateTimeArg(
+ options=["time"],
+ help="The time of the status.",
+ nullable=True,
+ )
+
+ # define Arg Group "Parameters"
+
+ _args_schema = cls._args_schema
+ _args_schema.location = AAZResourceLocationArg(
+ arg_group="Parameters",
+ help="Resource location",
+ fmt=AAZResourceLocationArgFormat(
+ resource_group_arg="resource_group",
+ ),
+ )
+ _args_schema.tags = AAZDictArg(
+ options=["--tags"],
+ arg_group="Parameters",
+ help="Space-separated tags: key[=value] [key[=value] ...].",
+ nullable=True,
+ )
+
+ tags = cls._args_schema.tags
+ tags.Element = AAZStrArg(
+ nullable=True,
+ )
+ return cls._args_schema
+
+ def _execute_operations(self):
+ self.pre_operations()
+ self.ProximityPlacementGroupsGet(ctx=self.ctx)()
+ self.pre_instance_update(self.ctx.vars.instance)
+ self.InstanceUpdateByJson(ctx=self.ctx)()
+ self.InstanceUpdateByGeneric(ctx=self.ctx)()
+ self.post_instance_update(self.ctx.vars.instance)
+ self.ProximityPlacementGroupsCreateOrUpdate(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.vars.instance, client_flatten=True)
+ return result
+
+ class ProximityPlacementGroupsGet(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.Compute/proximityPlacementGroups/{proximityPlacementGroupName}",
+ **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(
+ "proximityPlacementGroupName", self.ctx.args.proximity_placement_group_name,
+ required=True,
+ ),
+ **self.serialize_url_param(
+ "resourceGroupName", self.ctx.args.resource_group,
+ 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", "2020-06-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()
+ _UpdateHelper._build_schema_proximity_placement_group_read(cls._schema_on_200)
+
+ return cls._schema_on_200
+
+ class ProximityPlacementGroupsCreateOrUpdate(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, 201]:
+ return self.on_200_201(session)
+
+ return self.on_error(session.http_response)
+
+ @property
+ def url(self):
+ return self.client.format_url(
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/proximityPlacementGroups/{proximityPlacementGroupName}",
+ **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(
+ "proximityPlacementGroupName", self.ctx.args.proximity_placement_group_name,
+ required=True,
+ ),
+ **self.serialize_url_param(
+ "resourceGroupName", self.ctx.args.resource_group,
+ 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", "2020-06-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_201(self, session):
+ data = self.deserialize_http_content(session)
+ self.ctx.set_var(
+ "instance",
+ data,
+ schema_builder=self._build_schema_on_200_201
+ )
+
+ _schema_on_200_201 = None
+
+ @classmethod
+ def _build_schema_on_200_201(cls):
+ if cls._schema_on_200_201 is not None:
+ return cls._schema_on_200_201
+
+ cls._schema_on_200_201 = AAZObjectType()
+ _UpdateHelper._build_schema_proximity_placement_group_read(cls._schema_on_200_201)
+
+ return cls._schema_on_200_201
+
+ class InstanceUpdateByJson(AAZJsonInstanceUpdateOperation):
+
+ def __call__(self, *args, **kwargs):
+ self._update_instance(self.ctx.vars.instance)
+
+ def _update_instance(self, instance):
+ _instance_value, _builder = self.new_content_builder(
+ self.ctx.args,
+ value=instance,
+ typ=AAZObjectType
+ )
+ _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}})
+ _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}})
+ _builder.set_prop("tags", AAZDictType, ".tags")
+
+ properties = _builder.get(".properties")
+ if properties is not None:
+ properties.set_prop("colocationStatus", AAZObjectType, ".colocation_status")
+ properties.set_prop("proximityPlacementGroupType", AAZStrType, ".ppg_type")
+
+ colocation_status = _builder.get(".properties.colocationStatus")
+ if colocation_status is not None:
+ colocation_status.set_prop("code", AAZStrType, ".code")
+ colocation_status.set_prop("displayStatus", AAZStrType, ".display_status")
+ colocation_status.set_prop("level", AAZStrType, ".level")
+ colocation_status.set_prop("message", AAZStrType, ".message")
+ colocation_status.set_prop("time", AAZStrType, ".time")
+
+ tags = _builder.get(".tags")
+ if tags is not None:
+ tags.set_elements(AAZStrType, ".")
+
+ return _instance_value
+
+ class InstanceUpdateByGeneric(AAZGenericInstanceUpdateOperation):
+
+ def __call__(self, *args, **kwargs):
+ self._update_instance_by_generic(
+ self.ctx.vars.instance,
+ self.ctx.generic_update_args
+ )
+
+
+class _UpdateHelper:
+ """Helper class for Update"""
+
+ _schema_instance_view_status_read = None
+
+ @classmethod
+ def _build_schema_instance_view_status_read(cls, _schema):
+ if cls._schema_instance_view_status_read is not None:
+ _schema.code = cls._schema_instance_view_status_read.code
+ _schema.display_status = cls._schema_instance_view_status_read.display_status
+ _schema.level = cls._schema_instance_view_status_read.level
+ _schema.message = cls._schema_instance_view_status_read.message
+ _schema.time = cls._schema_instance_view_status_read.time
+ return
+
+ cls._schema_instance_view_status_read = _schema_instance_view_status_read = AAZObjectType()
+
+ instance_view_status_read = _schema_instance_view_status_read
+ instance_view_status_read.code = AAZStrType()
+ instance_view_status_read.display_status = AAZStrType(
+ serialized_name="displayStatus",
+ )
+ instance_view_status_read.level = AAZStrType()
+ instance_view_status_read.message = AAZStrType()
+ instance_view_status_read.time = AAZStrType()
+
+ _schema.code = cls._schema_instance_view_status_read.code
+ _schema.display_status = cls._schema_instance_view_status_read.display_status
+ _schema.level = cls._schema_instance_view_status_read.level
+ _schema.message = cls._schema_instance_view_status_read.message
+ _schema.time = cls._schema_instance_view_status_read.time
+
+ _schema_proximity_placement_group_read = None
+
+ @classmethod
+ def _build_schema_proximity_placement_group_read(cls, _schema):
+ if cls._schema_proximity_placement_group_read is not None:
+ _schema.id = cls._schema_proximity_placement_group_read.id
+ _schema.location = cls._schema_proximity_placement_group_read.location
+ _schema.name = cls._schema_proximity_placement_group_read.name
+ _schema.properties = cls._schema_proximity_placement_group_read.properties
+ _schema.tags = cls._schema_proximity_placement_group_read.tags
+ _schema.type = cls._schema_proximity_placement_group_read.type
+ return
+
+ cls._schema_proximity_placement_group_read = _schema_proximity_placement_group_read = AAZObjectType()
+
+ proximity_placement_group_read = _schema_proximity_placement_group_read
+ proximity_placement_group_read.id = AAZStrType(
+ flags={"read_only": True},
+ )
+ proximity_placement_group_read.location = AAZStrType(
+ flags={"required": True},
+ )
+ proximity_placement_group_read.name = AAZStrType(
+ flags={"read_only": True},
+ )
+ proximity_placement_group_read.properties = AAZObjectType(
+ flags={"client_flatten": True},
+ )
+ proximity_placement_group_read.tags = AAZDictType()
+ proximity_placement_group_read.type = AAZStrType(
+ flags={"read_only": True},
+ )
+
+ properties = _schema_proximity_placement_group_read.properties
+ properties.availability_sets = AAZListType(
+ serialized_name="availabilitySets",
+ flags={"read_only": True},
+ )
+ properties.colocation_status = AAZObjectType(
+ serialized_name="colocationStatus",
+ )
+ cls._build_schema_instance_view_status_read(properties.colocation_status)
+ properties.proximity_placement_group_type = AAZStrType(
+ serialized_name="proximityPlacementGroupType",
+ )
+ properties.virtual_machine_scale_sets = AAZListType(
+ serialized_name="virtualMachineScaleSets",
+ flags={"read_only": True},
+ )
+ properties.virtual_machines = AAZListType(
+ serialized_name="virtualMachines",
+ flags={"read_only": True},
+ )
+
+ availability_sets = _schema_proximity_placement_group_read.properties.availability_sets
+ availability_sets.Element = AAZObjectType()
+ cls._build_schema_sub_resource_with_colocation_status_read(availability_sets.Element)
+
+ virtual_machine_scale_sets = _schema_proximity_placement_group_read.properties.virtual_machine_scale_sets
+ virtual_machine_scale_sets.Element = AAZObjectType()
+ cls._build_schema_sub_resource_with_colocation_status_read(virtual_machine_scale_sets.Element)
+
+ virtual_machines = _schema_proximity_placement_group_read.properties.virtual_machines
+ virtual_machines.Element = AAZObjectType()
+ cls._build_schema_sub_resource_with_colocation_status_read(virtual_machines.Element)
+
+ tags = _schema_proximity_placement_group_read.tags
+ tags.Element = AAZStrType()
+
+ _schema.id = cls._schema_proximity_placement_group_read.id
+ _schema.location = cls._schema_proximity_placement_group_read.location
+ _schema.name = cls._schema_proximity_placement_group_read.name
+ _schema.properties = cls._schema_proximity_placement_group_read.properties
+ _schema.tags = cls._schema_proximity_placement_group_read.tags
+ _schema.type = cls._schema_proximity_placement_group_read.type
+
+ _schema_sub_resource_with_colocation_status_read = None
+
+ @classmethod
+ def _build_schema_sub_resource_with_colocation_status_read(cls, _schema):
+ if cls._schema_sub_resource_with_colocation_status_read is not None:
+ _schema.colocation_status = cls._schema_sub_resource_with_colocation_status_read.colocation_status
+ _schema.id = cls._schema_sub_resource_with_colocation_status_read.id
+ return
+
+ cls._schema_sub_resource_with_colocation_status_read = _schema_sub_resource_with_colocation_status_read = AAZObjectType()
+
+ sub_resource_with_colocation_status_read = _schema_sub_resource_with_colocation_status_read
+ sub_resource_with_colocation_status_read.colocation_status = AAZObjectType(
+ serialized_name="colocationStatus",
+ )
+ cls._build_schema_instance_view_status_read(sub_resource_with_colocation_status_read.colocation_status)
+ sub_resource_with_colocation_status_read.id = AAZStrType()
+
+ _schema.colocation_status = cls._schema_sub_resource_with_colocation_status_read.colocation_status
+ _schema.id = cls._schema_sub_resource_with_colocation_status_read.id
+
+
+__all__ = ["Update"]
diff --git a/src/azure-cli/azure/cli/command_modules/vm/azure_stack/_params.py b/src/azure-cli/azure/cli/command_modules/vm/azure_stack/_params.py
index da84c6b49fd..850c3c3213a 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/azure_stack/_params.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/azure_stack/_params.py
@@ -1464,19 +1464,6 @@ def load_arguments(self, _):
'used for decommissioning purposes. This property is updatable.', arg_group='Publishing Profile')
# endregion
- # region Proximity Placement Group
- with self.argument_context('ppg', min_api='2018-04-01') as c:
- c.argument('proximity_placement_group_name', arg_type=name_arg_type, help="The name of the proximity placement group.")
-
- with self.argument_context('ppg create') as c:
- c.argument('tags', tags_type, min_api='2018-04-01')
- c.argument('zone', zone_type, min_api='2021-11-01')
-
- for scope in ['ppg create', 'ppg update']:
- with self.argument_context(scope) as c:
- c.argument('ppg_type', options_list=['--type', '-t'], arg_type=get_enum_type(self.get_models('ProximityPlacementGroupType')), min_api='2018-04-01', help="The type of the proximity placement group.")
- c.argument('intent_vm_sizes', nargs='*', min_api='2021-11-01', help="Specify possible sizes of virtual machines that can be created in the proximity placement group.")
-
with self.argument_context('vm create', min_api='2018-04-01') as c:
c.argument('proximity_placement_group', options_list=['--ppg'],
help="The name or ID of the proximity placement group the VM should be associated with.",
diff --git a/src/azure-cli/azure/cli/command_modules/vm/azure_stack/_validators.py b/src/azure-cli/azure/cli/command_modules/vm/azure_stack/_validators.py
index 3b910ebbe79..cff3b971950 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/azure_stack/_validators.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/azure_stack/_validators.py
@@ -2314,20 +2314,6 @@ def _disk_encryption_set_format(cmd, namespace, name):
subscription=get_subscription_id(cmd.cli_ctx), resource_group=namespace.resource_group_name,
namespace='Microsoft.Compute', type='diskEncryptionSets', name=name)
return name
-
-
-# endregion
-
-
-def process_ppg_create_namespace(namespace):
- validate_tags(namespace)
- # The availability zone can be provided only when an intent is provided
- if namespace.zone and not namespace.intent_vm_sizes:
- raise RequiredArgumentMissingError('The --zone can be provided only when an intent is provided. '
- 'Please use parameter --intent-vm-sizes to specify possible sizes of '
- 'virtual machines that can be created in the proximity placement group.')
-
-
# endregion
@@ -2335,15 +2321,11 @@ def process_image_version_create_namespace(cmd, namespace):
validate_tags(namespace)
process_gallery_image_version_namespace(cmd, namespace)
process_image_resource_id_namespace(namespace)
-
-
# endregion
def process_image_version_update_namespace(cmd, namespace):
process_gallery_image_version_namespace(cmd, namespace)
-
-
# endregion
diff --git a/src/azure-cli/azure/cli/command_modules/vm/azure_stack/commands.py b/src/azure-cli/azure/cli/command_modules/vm/azure_stack/commands.py
index 7361af4b083..dfb631a0609 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/azure_stack/commands.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/azure_stack/commands.py
@@ -10,7 +10,6 @@
cf_disk_accesses, cf_images, cf_run_commands,
cf_gallery_images,
cf_gallery_image_versions,
- cf_proximity_placement_groups,
cf_dedicated_hosts, cf_dedicated_host_groups,
cf_log_analytics_data_plane,
cf_disk_encryption_set,
@@ -35,7 +34,7 @@
process_remove_identity_namespace, process_vm_secret_format, process_vm_vmss_stop, validate_vmss_update_namespace,
process_vm_update_namespace, process_set_applications_namespace, process_vm_disk_attach_namespace,
process_image_version_create_namespace, process_image_version_update_namespace,
- process_image_version_undelete_namespace, process_ppg_create_namespace, process_vm_disk_detach_namespace)
+ process_image_version_undelete_namespace, process_vm_disk_detach_namespace)
from azure.cli.command_modules.vm.azure_stack._image_builder import (
process_image_template_create_namespace, process_img_tmpl_output_add_namespace,
@@ -154,10 +153,6 @@ def load_command_table(self, _):
client_factory=cf_gallery_application_version,
)
- compute_proximity_placement_groups_sdk = CliCommandType(
- operations_tmpl='azure.mgmt.compute.operations#ProximityPlacementGroupsOperations.{}',
- )
-
compute_dedicated_host_sdk = CliCommandType(
operations_tmpl="azure.mgmt.compute.operations#DedicatedHostsOperations.{}",
client_factory=cf_dedicated_hosts,
@@ -496,11 +491,6 @@ def load_command_table(self, _):
g.custom_command('create', 'gallery_application_version_create', supports_no_wait=True)
g.custom_command('update', 'gallery_application_version_update', supports_no_wait=True)
- with self.command_group('ppg', compute_proximity_placement_groups_sdk, min_api='2018-04-01', client_factory=cf_proximity_placement_groups) as g:
- g.custom_command('create', 'create_proximity_placement_group', validator=process_ppg_create_namespace)
- g.custom_command('list', 'list_proximity_placement_groups')
- g.generic_update_command('update', setter_name='create_or_update', custom_func_name='update_ppg')
-
with self.command_group('vm monitor log', client_factory=cf_log_analytics_data_plane) as g:
g.custom_command('show', 'execute_query_for_vm', transform=transform_log_analytics_query_output) # pylint: disable=show-command
diff --git a/src/azure-cli/azure/cli/command_modules/vm/azure_stack/custom.py b/src/azure-cli/azure/cli/command_modules/vm/azure_stack/custom.py
index 14097e047c4..5f8ff045a9a 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/azure_stack/custom.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/azure_stack/custom.py
@@ -4971,43 +4971,6 @@ def update_image_version(cmd, resource_group_name, gallery_name, gallery_image_n
# endregion
-# region proximity placement groups
-def create_proximity_placement_group(cmd, client, proximity_placement_group_name, resource_group_name,
- ppg_type=None, location=None, tags=None, zone=None, intent_vm_sizes=None):
- location = location or _get_resource_group_location(cmd.cli_ctx, resource_group_name)
- ProximityPlacementGroup = cmd.get_models('ProximityPlacementGroup')
-
- ppg_params = ProximityPlacementGroup(name=proximity_placement_group_name, proximity_placement_group_type=ppg_type,
- location=location, tags=(tags or {}), zones=zone)
-
- if intent_vm_sizes:
- Intent = cmd.get_models('ProximityPlacementGroupPropertiesIntent')
- intent = Intent(vm_sizes=intent_vm_sizes)
- ppg_params.intent = intent
-
- return client.create_or_update(resource_group_name=resource_group_name,
- proximity_placement_group_name=proximity_placement_group_name, parameters=ppg_params)
-
-
-def update_ppg(cmd, instance, intent_vm_sizes=None, ppg_type=None):
- if intent_vm_sizes:
- Intent = cmd.get_models('ProximityPlacementGroupPropertiesIntent')
- intent = Intent(vm_sizes=intent_vm_sizes)
- instance.intent = intent
- if ppg_type:
- instance.proximity_placement_group_type = ppg_type
- return instance
-
-
-def list_proximity_placement_groups(client, resource_group_name=None):
- if resource_group_name:
- return client.list_by_resource_group(resource_group_name=resource_group_name)
- return client.list_by_subscription()
-
-
-# endregion
-
-
# region dedicated host
def create_dedicated_host_group(cmd, client, host_group_name, resource_group_name, platform_fault_domain_count,
automatic_placement=None, location=None, zones=None, tags=None, ultra_ssd_enabled=None):
diff --git a/src/azure-cli/azure/cli/command_modules/vm/azure_stack/profile_2020_09_01_hybrid/commands.py b/src/azure-cli/azure/cli/command_modules/vm/azure_stack/profile_2020_09_01_hybrid/commands.py
index 1de62166a98..7130f9ab0be 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/azure_stack/profile_2020_09_01_hybrid/commands.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/azure_stack/profile_2020_09_01_hybrid/commands.py
@@ -11,8 +11,9 @@
def load_command_table(self, _):
- from .operations.ppg import PPGShow
+ from .operations.ppg import PPGShow, PPGUpdate
self.command_table["ppg show"] = PPGShow(loader=self)
+ self.command_table["ppg update"] = PPGUpdate(loader=self)
Disk = import_aaz_by_profile("disk")
self.command_table['disk list'] = Disk.List(loader=self, table_transformer='[].' + transform_disk_show_table_output)
diff --git a/src/azure-cli/azure/cli/command_modules/vm/azure_stack/profile_2020_09_01_hybrid/operations/ppg.py b/src/azure-cli/azure/cli/command_modules/vm/azure_stack/profile_2020_09_01_hybrid/operations/ppg.py
index 87c5ece90b0..ff61c841238 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/azure_stack/profile_2020_09_01_hybrid/operations/ppg.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/azure_stack/profile_2020_09_01_hybrid/operations/ppg.py
@@ -22,3 +22,16 @@ def _build_arguments_schema(cls, *args, **kwargs):
args_schema.include_colocation_status.enum = AAZArgEnum({"True": "True", "False": "False"})
return args_schema
+
+
+class PPGUpdate(_PPG.Update):
+ @classmethod
+ def _build_arguments_schema(cls, *args, **kwargs):
+ args_schema = super()._build_arguments_schema(*args, **kwargs)
+
+ args_schema.tags._registered = False
+ args_schema.colocation_status._registered = False
+ args_schema.location._registered = False
+ args_schema.proximity_placement_group_name._id_part = None
+
+ return args_schema
diff --git a/src/azure-cli/azure/cli/command_modules/vm/commands.py b/src/azure-cli/azure/cli/command_modules/vm/commands.py
index 57c592db6ef..d1397dd71f3 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/commands.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/commands.py
@@ -34,7 +34,7 @@
process_remove_identity_namespace, process_vm_secret_format, process_vm_vmss_stop, validate_vmss_update_namespace,
process_vm_update_namespace, process_set_applications_namespace, process_vm_disk_attach_namespace,
process_image_version_create_namespace, process_image_version_update_namespace,
- process_image_version_undelete_namespace, process_ppg_create_namespace, process_vm_disk_detach_namespace)
+ process_image_version_undelete_namespace, process_vm_disk_detach_namespace)
from azure.cli.command_modules.vm._image_builder import (
process_image_template_create_namespace, process_img_tmpl_output_add_namespace,
@@ -566,9 +566,9 @@ def load_command_table(self, _):
g.custom_command('update', 'gallery_application_version_update', supports_no_wait=True)
with self.command_group('ppg', compute_proximity_placement_groups_sdk, min_api='2018-04-01', client_factory=cf_proximity_placement_groups) as g:
- g.custom_command('create', 'create_proximity_placement_group', validator=process_ppg_create_namespace)
- g.custom_command('list', 'list_proximity_placement_groups')
- g.generic_update_command('update', setter_name='create_or_update', custom_func_name='update_ppg')
+ from .operations.ppg import PPGCreate, PPGUpdate
+ self.command_table['ppg create'] = PPGCreate(loader=self)
+ self.command_table['ppg update'] = PPGUpdate(loader=self)
with self.command_group('vm monitor log', client_factory=cf_log_analytics_data_plane) as g:
g.custom_command('show', 'execute_query_for_vm', transform=transform_log_analytics_query_output) # pylint: disable=show-command
diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py
index 835526eb328..a85e7344087 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/custom.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py
@@ -5133,42 +5133,6 @@ def update_image_version(cmd, resource_group_name, gallery_name, gallery_image_n
# endregion
-# region proximity placement groups
-def create_proximity_placement_group(cmd, client, proximity_placement_group_name, resource_group_name,
- ppg_type=None, location=None, tags=None, zone=None, intent_vm_sizes=None):
-
- location = location or _get_resource_group_location(cmd.cli_ctx, resource_group_name)
- ProximityPlacementGroup = cmd.get_models('ProximityPlacementGroup')
-
- ppg_params = ProximityPlacementGroup(name=proximity_placement_group_name, proximity_placement_group_type=ppg_type,
- location=location, tags=(tags or {}), zones=zone)
-
- if intent_vm_sizes:
- Intent = cmd.get_models('ProximityPlacementGroupPropertiesIntent')
- intent = Intent(vm_sizes=intent_vm_sizes)
- ppg_params.intent = intent
-
- return client.create_or_update(resource_group_name=resource_group_name,
- proximity_placement_group_name=proximity_placement_group_name, parameters=ppg_params)
-
-
-def update_ppg(cmd, instance, intent_vm_sizes=None, ppg_type=None):
- if intent_vm_sizes:
- Intent = cmd.get_models('ProximityPlacementGroupPropertiesIntent')
- intent = Intent(vm_sizes=intent_vm_sizes)
- instance.intent = intent
- if ppg_type:
- instance.proximity_placement_group_type = ppg_type
- return instance
-
-
-def list_proximity_placement_groups(client, resource_group_name=None):
- if resource_group_name:
- return client.list_by_resource_group(resource_group_name=resource_group_name)
- return client.list_by_subscription()
-# endregion
-
-
# region dedicated host
def create_dedicated_host_group(cmd, client, host_group_name, resource_group_name, platform_fault_domain_count,
automatic_placement=None, location=None, zones=None, tags=None, ultra_ssd_enabled=None):
diff --git a/src/azure-cli/azure/cli/command_modules/vm/operations/ppg.py b/src/azure-cli/azure/cli/command_modules/vm/operations/ppg.py
index be66970d835..a94e90a843b 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/operations/ppg.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/operations/ppg.py
@@ -5,13 +5,14 @@
# pylint: disable=no-self-use, line-too-long, protected-access, too-few-public-methods, unused-argument
from knack.log import get_logger
-from ..aaz.latest.ppg import Show as _PPGShow
+from azure.cli.core.azclierror import RequiredArgumentMissingError
+from azure.cli.core.aaz import has_value
+from ..aaz.latest.ppg import Show as _PPGShow, Create as _PPGCreate, Update as _PPGUpdate
logger = get_logger(__name__)
class PPGShow(_PPGShow):
-
@classmethod
def _build_arguments_schema(cls, *args, **kwargs):
args_schema = super()._build_arguments_schema(*args, **kwargs)
@@ -21,3 +22,28 @@ def _build_arguments_schema(cls, *args, **kwargs):
args_schema.include_colocation_status.enum = AAZArgEnum({"True": "True", "False": "False"})
return args_schema
+
+
+class PPGCreate(_PPGCreate):
+ def pre_operations(self):
+ args = self.ctx.args
+
+ # The availability zone can be provided only when an intent is provided
+ if has_value(args.zone) and not has_value(args.intent_vm_sizes):
+ raise RequiredArgumentMissingError('The --zone can be provided only when an intent is provided. '
+ 'Please use parameter --intent-vm-sizes to specify possible sizes of '
+ 'virtual machines that can be created in the proximity placement group.')
+
+
+class PPGUpdate(_PPGUpdate):
+ @classmethod
+ def _build_arguments_schema(cls, *args, **kwargs):
+ args_schema = super()._build_arguments_schema(*args, **kwargs)
+
+ args_schema.tags._registered = False
+ args_schema.zone._registered = False
+ args_schema.colocation_status._registered = False
+ args_schema.location._registered = False
+ args_schema.proximity_placement_group_name._id_part = None
+
+ return args_schema
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_ppg_update.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_ppg_update.yaml
index 830bf1be712..f2b5b74698c 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_ppg_update.yaml
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_ppg_update.yaml
@@ -13,12 +13,12 @@ interactions:
ParameterSetName:
- -g -n -t
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001?api-version=2019-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001","name":"cli_test_ppg_update_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_update","date":"2023-12-06T08:37:32Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001","name":"cli_test_ppg_update_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_update","date":"2025-02-11T04:19:41Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -27,7 +27,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:37:30 GMT
+ - Tue, 11 Feb 2025 04:19:45 GMT
expires:
- '-1'
pragma:
@@ -38,14 +38,15 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 093B107E8BF04FBAA636DFE471B05092 Ref B: TYO201100113039 Ref C: 2023-12-06T08:37:31Z'
+ - 'Ref A: 424C2DD91964419787F5E4314C7BBB3F Ref B: SEL221051801019 Ref C: 2025-02-11T04:19:45Z'
status:
code: 200
message: OK
- request:
- body: '{"location": "westus", "tags": {}, "properties": {"proximityPlacementGroupType":
- "Standard"}}'
+ body: '{"location": "westus", "properties": {"proximityPlacementGroupType": "Standard"}}'
headers:
Accept:
- application/json
@@ -56,30 +57,30 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '93'
+ - '81'
Content-Type:
- application/json
ParameterSetName:
- -g -n -t
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/proximityPlacementGroups/ppg1?api-version=2020-06-01
response:
body:
string: "{\r\n \"name\": \"ppg1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/proximityPlacementGroups/ppg1\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '355'
+ - '340'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:37:32 GMT
+ - Tue, 11 Feb 2025 04:19:47 GMT
expires:
- '-1'
pragma:
@@ -90,15 +91,233 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/PutDeletePPG3Min;98,Microsoft.Compute/PutDeletePPG30Min;490
+ - Microsoft.Compute/PutDeletePPGSubscriptionMaximum;119
+ x-ms-ratelimit-remaining-subscription-global-writes:
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '1191'
+ - '199'
x-msedge-ref:
- - 'Ref A: 3ABB9859A2254D59BC1C91BEF1412BD8 Ref B: TYO201100113025 Ref C: 2023-12-06T08:37:31Z'
+ - 'Ref A: 8D3C5AF0BFA04D07BDADD3B7667AC096 Ref B: SEL221051503049 Ref C: 2025-02-11T04:19:45Z'
status:
code: 201
message: ''
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network nsg create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001?api-version=2019-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001","name":"cli_test_ppg_update_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_update","date":"2025-02-11T04:19:41Z","module":"vm","Creator":"zhuyan@microsoft.com","DateCreated":"2025-02-11T04:19:46Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '439'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 11 Feb 2025 04:19:48 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-msedge-ref:
+ - 'Ref A: 92C64E0249844B02B26718D16C640362 Ref B: SEL221051805009 Ref C: 2025-02-11T04:19:48Z'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "westus"}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network nsg create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '22'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1?api-version=2018-11-01
+ response:
+ body:
+ string: '{"name":"nsg1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1","etag":"W/\"a7032d6c-a4f1-425f-901f-b05350d0a904\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","properties":{"provisioningState":"Updating","resourceGuid":"ed77e89c-f354-4b36-96d3-643e5a894402","securityRules":[],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetInBound","etag":"W/\"a7032d6c-a4f1-425f-901f-b05350d0a904\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Updating","description":"Allow
+ inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"a7032d6c-a4f1-425f-901f-b05350d0a904\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Updating","description":"Allow
+ inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllInBound","etag":"W/\"a7032d6c-a4f1-425f-901f-b05350d0a904\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Updating","description":"Deny
+ all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"a7032d6c-a4f1-425f-901f-b05350d0a904\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Updating","description":"Allow
+ outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"a7032d6c-a4f1-425f-901f-b05350d0a904\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Updating","description":"Allow
+ outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllOutBound","etag":"W/\"a7032d6c-a4f1-425f-901f-b05350d0a904\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Updating","description":"Deny
+ all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}]}}'
+ headers:
+ azure-asyncnotification:
+ - Enabled
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2128b794-fb20-434f-b0db-e131576ed159?api-version=2018-11-01&t=638748443921348045&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=evY_-J5JoD2tbEbkv7nhm23J_O_vPYG1ttvJ0V08fll27P-C3zg1jjvnde4s54QtTUcUlnrBKRqTZtsf8GpSkmX1M40WkmZ3HESNQGkQKRPiFIt2WHV8JPYmJEl_R541krphMtdCVrpEy-FcwhSGn5Y9ZrdrIPfBr2zJWfIitkLgM_030wYje0SkA7Blr80XLIy9qYe1HlKEYz_-A5LSlJZ63A4AjBtb42z7JPTHbx8b5AD5HOYtmI8VSyjUSDxCbBhuVsS-Xlfasq_L4xBLJGrHrkd8KW_lF2C7Sor08HkdYO_5F5qLCqCLPjlLhtkCOZAD2dfRXwqTi_CzAUBVIw&h=X8ljWovwKC--eXF7YoxmuMIWzNcQTf9yR2yD6ih-dAc
+ cache-control:
+ - no-cache
+ content-length:
+ - '4934'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 11 Feb 2025 04:19:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-cache:
+ - CONFIG_NOCACHE
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 2140e29e-e3d8-423e-9f42-54fefebce82e
+ x-ms-ratelimit-remaining-subscription-global-writes:
+ - '2999'
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '199'
+ x-msedge-ref:
+ - 'Ref A: CE98C7CAA5AF4499B48E28FCF80DB6A7 Ref B: SEL221051803045 Ref C: 2025-02-11T04:19:49Z'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network nsg create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2128b794-fb20-434f-b0db-e131576ed159?api-version=2018-11-01&t=638748443921348045&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=evY_-J5JoD2tbEbkv7nhm23J_O_vPYG1ttvJ0V08fll27P-C3zg1jjvnde4s54QtTUcUlnrBKRqTZtsf8GpSkmX1M40WkmZ3HESNQGkQKRPiFIt2WHV8JPYmJEl_R541krphMtdCVrpEy-FcwhSGn5Y9ZrdrIPfBr2zJWfIitkLgM_030wYje0SkA7Blr80XLIy9qYe1HlKEYz_-A5LSlJZ63A4AjBtb42z7JPTHbx8b5AD5HOYtmI8VSyjUSDxCbBhuVsS-Xlfasq_L4xBLJGrHrkd8KW_lF2C7Sor08HkdYO_5F5qLCqCLPjlLhtkCOZAD2dfRXwqTi_CzAUBVIw&h=X8ljWovwKC--eXF7YoxmuMIWzNcQTf9yR2yD6ih-dAc
+ response:
+ body:
+ string: '{"status":"Succeeded"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '22'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 11 Feb 2025 04:19:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-cache:
+ - CONFIG_NOCACHE
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - c18bbf88-f611-4ce4-ad90-146ad0ee0ace
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
+ x-msedge-ref:
+ - 'Ref A: C082C93FE8AA4DF593953DFA3CDE56CC Ref B: SEL221051803045 Ref C: 2025-02-11T04:19:52Z'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network nsg create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1?api-version=2018-11-01
+ response:
+ body:
+ string: '{"name":"nsg1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1","etag":"W/\"35ddb8b4-bb6a-48fc-a970-1fb74d734e9d\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"ed77e89c-f354-4b36-96d3-643e5a894402","securityRules":[],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetInBound","etag":"W/\"35ddb8b4-bb6a-48fc-a970-1fb74d734e9d\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow
+ inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"35ddb8b4-bb6a-48fc-a970-1fb74d734e9d\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow
+ inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllInBound","etag":"W/\"35ddb8b4-bb6a-48fc-a970-1fb74d734e9d\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Deny
+ all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"35ddb8b4-bb6a-48fc-a970-1fb74d734e9d\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow
+ outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"35ddb8b4-bb6a-48fc-a970-1fb74d734e9d\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow
+ outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllOutBound","etag":"W/\"35ddb8b4-bb6a-48fc-a970-1fb74d734e9d\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Deny
+ all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}]}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4941'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 11 Feb 2025 04:19:51 GMT
+ etag:
+ - W/"35ddb8b4-bb6a-48fc-a970-1fb74d734e9d"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-cache:
+ - CONFIG_NOCACHE
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 13ee507c-02d8-45b0-91a8-09797a758854
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
+ x-msedge-ref:
+ - 'Ref A: E398C49DB65A4DF69BB37726C0FB484A Ref B: SEL221051803045 Ref C: 2025-02-11T04:19:52Z'
+ status:
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -111,23 +330,23 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value
+ - -g -n --image --admin-username --ssh-key-value --nsg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001?api-version=2019-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001","name":"cli_test_ppg_update_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_update","date":"2023-12-06T08:37:32Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001","name":"cli_test_ppg_update_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_update","date":"2025-02-11T04:19:41Z","module":"vm","Creator":"zhuyan@microsoft.com","DateCreated":"2025-02-11T04:19:46Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
content-length:
- - '369'
+ - '439'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:37:33 GMT
+ - Tue, 11 Feb 2025 04:19:53 GMT
expires:
- '-1'
pragma:
@@ -138,8 +357,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: A89EA939C79F4B4F95649FBC734866E2 Ref B: TYO201100114039 Ref C: 2023-12-06T08:37:33Z'
+ - 'Ref A: 4EA776414B324642B0424B56A486E723 Ref B: SEL221051801023 Ref C: 2025-02-11T04:19:53Z'
status:
code: 200
message: OK
@@ -155,15 +376,15 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value
+ - -g -n --image --admin-username --ssh-key-value --nsg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2020-06-01
response:
body:
- string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20230802.1460\"\
- ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20230802.1460\"\
+ string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240430.1733\"\
+ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\
\r\n }\r\n]"
headers:
cache-control:
@@ -173,7 +394,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:37:34 GMT
+ - Tue, 11 Feb 2025 04:19:54 GMT
expires:
- '-1'
pragma:
@@ -185,9 +406,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43970
+ - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 0E55AC4FEBE747E89E6AACA2B2E35CB5 Ref B: TYO201100117035 Ref C: 2023-12-06T08:37:33Z'
+ - 'Ref A: 7AAB6E86599F48B09C78E8F58CBB5EE1 Ref B: SEL221051801027 Ref C: 2025-02-11T04:19:54Z'
status:
code: 200
message: OK
@@ -203,11 +426,11 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value
+ - -g -n --image --admin-username --ssh-key-value --nsg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20230802.1460?api-version=2020-06-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2020-06-01
response:
body:
string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \
@@ -222,7 +445,7 @@ interactions:
,\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\"\
: {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\
\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\"\
- ,\r\n \"name\": \"0.20230802.1460\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20230802.1460\"\
+ ,\r\n \"name\": \"0.20240430.1733\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\
\r\n}"
headers:
cache-control:
@@ -232,7 +455,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:37:34 GMT
+ - Tue, 11 Feb 2025 04:19:54 GMT
expires:
- '-1'
pragma:
@@ -244,9 +467,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73980
+ - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 67F0C336EB824661B92CFDDC7B30AAE0 Ref B: TYO201100114011 Ref C: 2023-12-06T08:37:34Z'
+ - 'Ref A: E3E2FDC21F1C453C97D5C7B523D2BC71 Ref B: SEL221051802033 Ref C: 2025-02-11T04:19:54Z'
status:
code: 200
message: OK
@@ -262,9 +487,9 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value
+ - -g -n --image --admin-username --ssh-key-value --nsg
User-Agent:
- - AZURECLI/2.55.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-11-01
response:
@@ -278,7 +503,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:37:35 GMT
+ - Tue, 11 Feb 2025 04:19:55 GMT
expires:
- '-1'
pragma:
@@ -289,8 +514,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 73BD6A9B29BA484A85884A1E30C079D0 Ref B: TYO201100116039 Ref C: 2023-12-06T08:37:35Z'
+ - 'Ref A: 27332B0AD75B41D6A8E072827E383B37 Ref B: SEL221051503029 Ref C: 2025-02-11T04:19:55Z'
status:
code: 200
message: OK
@@ -319,14 +546,15 @@ interactions:
{"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite",
"managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher":
"Debian", "offer": "debian-10", "sku": "10", "version": "latest"}}, "osProfile":
- {"computerNamePrefix": "vmss1d51d", "adminUsername": "debian", "linuxConfiguration":
+ {"computerNamePrefix": "vmss1c1aa", "adminUsername": "debian", "linuxConfiguration":
{"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/debian/.ssh/authorized_keys",
"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==
test@example.com\n"}]}}}, "networkProfile": {"networkInterfaceConfigurations":
- [{"name": "vmss1d51dNic", "properties": {"ipConfigurations": [{"name": "vmss1d51dIPConfig",
+ [{"name": "vmss1c1aaNic", "properties": {"ipConfigurations": [{"name": "vmss1c1aaIPConfig",
"properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},
"loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],
"loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}],
+ "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1"},
"primary": "true"}}]}}, "orchestrationMode": "Uniform"}, "sku": {"name": "Standard_DS1_v2",
"capacity": 2}}], "outputs": {"VMSS": {"type": "object", "value": "[reference(resourceId(''Microsoft.Compute/virtualMachineScaleSets'',
''vmss1''),providers(''Microsoft.Compute'', ''virtualMachineScaleSets'').apiVersions[0])]"}}},
@@ -341,21 +569,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '4342'
+ - '4526'
Content-Type:
- application/json
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value
+ - -g -n --image --admin-username --ssh-key-value --nsg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/vmss_deploy_XG6eAwMqB4qjChRC5Pg5BN7v5IW3TqUl","name":"vmss_deploy_XG6eAwMqB4qjChRC5Pg5BN7v5IW3TqUl","type":"Microsoft.Resources/deployments","properties":{"templateHash":"1012605873139173495","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-12-06T08:37:43.6147308Z","duration":"PT0.0007405S","correlationId":"38808d18-95cd-406c-82b4-7cd1df204aa3","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/vmss_deploy_0vwKT2KJxq096FsmC2m5VxRzeHqBv40m","name":"vmss_deploy_0vwKT2KJxq096FsmC2m5VxRzeHqBv40m","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6179096859408893072","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-02-11T04:20:04.9279039Z","duration":"PT0.0007337S","correlationId":"78a57505-c0b2-4662-80f4-d59c46368a45","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/vmss_deploy_XG6eAwMqB4qjChRC5Pg5BN7v5IW3TqUl/operationStatuses/08584997550237238822?api-version=2019-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/vmss_deploy_0vwKT2KJxq096FsmC2m5VxRzeHqBv40m/operationStatuses/08584623592839387614?api-version=2019-10-01&t=638748444091488047&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=bJ5CqLYnDE-tEAYSRpKAbXk80OzJndtXoNDWMlUInhruFvpS2nhPpokPUvDxbs4P4Wq0g6g_TPaUHb751uwQxaUN136owEenriwmDjbLn7xk037BrlttekthWpHdez_j84_ayPGHwxrgMxO7auBO6-4sEqpCromG2fl-0t2zhZYJJ4dXiymrV1_dl_mFWJQX8-XIXK-04dGVSoWSm4BmGJa8jb-oW3Ledp8cWrVlljd0VhObf5ME6wJNGtmF0xYCimL0Gk1bSgVb002e8sDYwg5ZcJN5ZO0X5DhbWD0O73DF2jfIkknxeGVGYLFaV4Yn2M_6xdCrk3VXwRxUY_vwTg&h=QzFr3AFfQw-5eOlvhNLLOk9OjqR3gOiYapg3GXQrnpM
cache-control:
- no-cache
content-length:
@@ -363,7 +591,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:37:44 GMT
+ - Tue, 11 Feb 2025 04:20:08 GMT
expires:
- '-1'
pragma:
@@ -374,10 +602,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-deployment-engine-version:
+ - 1.224.0
+ x-ms-ratelimit-remaining-subscription-global-writes:
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '199'
x-msedge-ref:
- - 'Ref A: 0460C7D16C3F4672BFE4D95893ED7EA8 Ref B: TYO201100114009 Ref C: 2023-12-06T08:37:36Z'
+ - 'Ref A: 683B56DDFB574A9C8D52F8258428669A Ref B: SEL221051503029 Ref C: 2025-02-11T04:19:56Z'
status:
code: 201
message: Created
@@ -393,23 +625,23 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value
+ - -g -n --image --admin-username --ssh-key-value --nsg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584997550237238822?api-version=2019-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584623592839387614?api-version=2019-10-01&t=638748444091488047&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=bJ5CqLYnDE-tEAYSRpKAbXk80OzJndtXoNDWMlUInhruFvpS2nhPpokPUvDxbs4P4Wq0g6g_TPaUHb751uwQxaUN136owEenriwmDjbLn7xk037BrlttekthWpHdez_j84_ayPGHwxrgMxO7auBO6-4sEqpCromG2fl-0t2zhZYJJ4dXiymrV1_dl_mFWJQX8-XIXK-04dGVSoWSm4BmGJa8jb-oW3Ledp8cWrVlljd0VhObf5ME6wJNGtmF0xYCimL0Gk1bSgVb002e8sDYwg5ZcJN5ZO0X5DhbWD0O73DF2jfIkknxeGVGYLFaV4Yn2M_6xdCrk3VXwRxUY_vwTg&h=QzFr3AFfQw-5eOlvhNLLOk9OjqR3gOiYapg3GXQrnpM
response:
body:
- string: '{"status":"Running"}'
+ string: '{"status":"Accepted"}'
headers:
cache-control:
- no-cache
content-length:
- - '20'
+ - '21'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:37:45 GMT
+ - Tue, 11 Feb 2025 04:20:09 GMT
expires:
- '-1'
pragma:
@@ -420,8 +652,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 3F850EC8D0114105AAB332F214AE9944 Ref B: TYO201100114009 Ref C: 2023-12-06T08:37:45Z'
+ - 'Ref A: 8281DB0699EC4423A030B4D8C4D2707F Ref B: SEL221051503029 Ref C: 2025-02-11T04:20:09Z'
status:
code: 200
message: OK
@@ -437,11 +671,11 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value
+ - -g -n --image --admin-username --ssh-key-value --nsg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584997550237238822?api-version=2019-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584623592839387614?api-version=2019-10-01&t=638748444091488047&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=bJ5CqLYnDE-tEAYSRpKAbXk80OzJndtXoNDWMlUInhruFvpS2nhPpokPUvDxbs4P4Wq0g6g_TPaUHb751uwQxaUN136owEenriwmDjbLn7xk037BrlttekthWpHdez_j84_ayPGHwxrgMxO7auBO6-4sEqpCromG2fl-0t2zhZYJJ4dXiymrV1_dl_mFWJQX8-XIXK-04dGVSoWSm4BmGJa8jb-oW3Ledp8cWrVlljd0VhObf5ME6wJNGtmF0xYCimL0Gk1bSgVb002e8sDYwg5ZcJN5ZO0X5DhbWD0O73DF2jfIkknxeGVGYLFaV4Yn2M_6xdCrk3VXwRxUY_vwTg&h=QzFr3AFfQw-5eOlvhNLLOk9OjqR3gOiYapg3GXQrnpM
response:
body:
string: '{"status":"Running"}'
@@ -453,7 +687,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:38:16 GMT
+ - Tue, 11 Feb 2025 04:20:41 GMT
expires:
- '-1'
pragma:
@@ -464,8 +698,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 676BDEC5E48B42B38ED930EE56F909F6 Ref B: TYO201100114009 Ref C: 2023-12-06T08:38:16Z'
+ - 'Ref A: 22E3AB5779684128B7E2D473A1B133AE Ref B: SEL221051503029 Ref C: 2025-02-11T04:20:40Z'
status:
code: 200
message: OK
@@ -481,11 +717,11 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value
+ - -g -n --image --admin-username --ssh-key-value --nsg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584997550237238822?api-version=2019-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584623592839387614?api-version=2019-10-01&t=638748444091488047&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=bJ5CqLYnDE-tEAYSRpKAbXk80OzJndtXoNDWMlUInhruFvpS2nhPpokPUvDxbs4P4Wq0g6g_TPaUHb751uwQxaUN136owEenriwmDjbLn7xk037BrlttekthWpHdez_j84_ayPGHwxrgMxO7auBO6-4sEqpCromG2fl-0t2zhZYJJ4dXiymrV1_dl_mFWJQX8-XIXK-04dGVSoWSm4BmGJa8jb-oW3Ledp8cWrVlljd0VhObf5ME6wJNGtmF0xYCimL0Gk1bSgVb002e8sDYwg5ZcJN5ZO0X5DhbWD0O73DF2jfIkknxeGVGYLFaV4Yn2M_6xdCrk3VXwRxUY_vwTg&h=QzFr3AFfQw-5eOlvhNLLOk9OjqR3gOiYapg3GXQrnpM
response:
body:
string: '{"status":"Succeeded"}'
@@ -497,7 +733,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:38:47 GMT
+ - Tue, 11 Feb 2025 04:21:12 GMT
expires:
- '-1'
pragma:
@@ -508,8 +744,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: D31A82F4DCAB455FAF1D228B1D6AAFED Ref B: TYO201100114009 Ref C: 2023-12-06T08:38:46Z'
+ - 'Ref A: 67874648D78E4D9B8C71926ECB0D49FA Ref B: SEL221051503029 Ref C: 2025-02-11T04:21:11Z'
status:
code: 200
message: OK
@@ -525,25 +763,25 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value
+ - -g -n --image --admin-username --ssh-key-value --nsg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/vmss_deploy_XG6eAwMqB4qjChRC5Pg5BN7v5IW3TqUl","name":"vmss_deploy_XG6eAwMqB4qjChRC5Pg5BN7v5IW3TqUl","type":"Microsoft.Resources/deployments","properties":{"templateHash":"1012605873139173495","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-12-06T08:38:40.1400952Z","duration":"PT56.5261049S","correlationId":"38808d18-95cd-406c-82b4-7cd1df204aa3","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss1d51d","adminUsername":"debian","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/debian/.ssh/authorized_keys","keyData":"ssh-rsa
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/vmss_deploy_0vwKT2KJxq096FsmC2m5VxRzeHqBv40m","name":"vmss_deploy_0vwKT2KJxq096FsmC2m5VxRzeHqBv40m","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6179096859408893072","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-02-11T04:21:02.0934504Z","duration":"PT57.1662802S","correlationId":"78a57505-c0b2-4662-80f4-d59c46368a45","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss1c1aa","adminUsername":"debian","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/debian/.ssh/authorized_keys","keyData":"ssh-rsa
AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==
- test@example.com\n"}]},"provisionVMAgent":true,"enableVMAgentPlatformUpdates":false},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-10","sku":"10","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss1d51dNic","properties":{"primary":true,"disableTcpStateTracking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss1d51dIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]},"timeCreated":"2023-12-06T08:38:00.9159704+00:00"},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"1c2d2563-3905-4da5-8fd8-514b48429c85","timeCreated":"2023-12-06T08:38:00.9159704+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}'
+ test@example.com\n"}]},"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-10","sku":"10","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss1c1aaNic","properties":{"primary":true,"disableTcpStateTracking":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1"},"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss1c1aaIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]},"timeCreated":"2025-02-11T04:20:25.2334255+00:00"},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"1352fb2e-76b1-48b8-9870-89134c6adac7","platformFaultDomainCount":5,"timeCreated":"2025-02-11T04:20:25.2334255+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}'
headers:
cache-control:
- no-cache
content-length:
- - '5694'
+ - '5867'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:38:47 GMT
+ - Tue, 11 Feb 2025 04:21:13 GMT
expires:
- '-1'
pragma:
@@ -554,8 +792,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 4A090C25AB4048C69B4A45E5305E8F7B Ref B: TYO201100114009 Ref C: 2023-12-06T08:38:48Z'
+ - 'Ref A: D7BFC18D8CAF4ED3B4B581D28F5BC25B Ref B: SEL221051503029 Ref C: 2025-02-11T04:21:12Z'
status:
code: 200
message: OK
@@ -573,7 +813,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-06-01
response:
@@ -585,7 +825,7 @@ interactions:
: {\r\n \"singlePlacementGroup\": true,\r\n \"orchestrationMode\": \"\
Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n \
\ },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \
- \ \"computerNamePrefix\": \"vmss1d51d\",\r\n \"adminUsername\"\
+ \ \"computerNamePrefix\": \"vmss1c1aa\",\r\n \"adminUsername\"\
: \"debian\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\
: true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n \
\ {\r\n \"path\": \"/home/debian/.ssh/authorized_keys\"\
@@ -601,26 +841,26 @@ interactions:
: {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\"\
,\r\n \"sku\": \"10\",\r\n \"version\": \"latest\"\r\n \
\ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\
- :[{\"name\":\"vmss1d51dNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\
- :false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"\
- ipConfigurations\":[{\"name\":\"vmss1d51dIPConfig\",\"properties\":{\"subnet\"\
- :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"\
+ :[{\"name\":\"vmss1c1aaNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\
+ :false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1\"\
+ },\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\
+ :[{\"name\":\"vmss1c1aaIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"\
},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\
:[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"\
}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"\
}]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\":\
- \ false,\r\n \"uniqueId\": \"1c2d2563-3905-4da5-8fd8-514b48429c85\"\r\n\
- \ }\r\n}"
+ \ false,\r\n \"uniqueId\": \"1352fb2e-76b1-48b8-9870-89134c6adac7\",\r\n\
+ \ \"platformFaultDomainCount\": 5\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '3436'
+ - '3653'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:38:48 GMT
+ - Tue, 11 Feb 2025 04:21:14 GMT
expires:
- '-1'
pragma:
@@ -631,10 +871,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2395,Microsoft.Compute/GetVMScaleSetResource;31
+ - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2396,Microsoft.Compute/GetVMScaleSetResource;32
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 965585D033074B6D8729A7B4DA9A64AF Ref B: TYO201100117039 Ref C: 2023-12-06T08:38:49Z'
+ - 'Ref A: CF54FCEE0C0049C9A9B41BF9E572D4FD Ref B: SEL221051504017 Ref C: 2025-02-11T04:21:14Z'
status:
code: 200
message: ''
@@ -656,7 +900,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/deallocate?api-version=2020-06-01
response:
@@ -666,17 +910,17 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/49974412-caa1-45b4-8dae-6cd5ea06b4e9?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638374487307718453&c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M&s=vQLH7ZwvRHqkqCd3Ho9WZnN3JLKMd3KXxxe5bhuNuXw0SouudFne7k7ky6VvJu78e-BbU_XpgiTzC2xG52GivhpHMQ3Fn-mbmhBs_ssvLVGsLIcuJv3jL6eqaOpf0Uo46CkOfg-zMfQihXI5Hzo5c-I6dbvVAhOvCVPHgpXcRi86PQAuaoHHj0sAbzCLrj_e5DvrmCGUycKUCsodOXGVWpNRpE-Q9M2uU8Quih-P2yrjm991JHs6Uocg63MkEL-yxg0uQjXDMskUzbSX7yWXIdqPz-D_DbtnlclCpyAVmQa1YJxOynMoBeRDatblCQxy-gPj0EzWwywm-BOeJt1Uhg&h=V5-pRtmF6qsQM6cKuETSjHMO4HiFAjiws2l1xC1BS7c
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/32bd7359-aa8b-4530-9c2f-9bf3390e663c?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638748444762138095&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=nFwRaVcpPy5fWndWNOBa_FR3HMl-gqoFD9wSjHbCTTvHIBceYctSo-1TkVfvbJk7sOBT8MzpOSmtA-FoQTwZOGJ9Hhi7BFvBqyWkLuFItP02GeP9unLuSs9fuKJ0CyDv2YPNuCoLikJgGaCFGbUMCj2t9-WZ0a369j9bTlxRh84kFHKZWSoPTg_F9VtJfytNIrUKIUIN1HyjI1X0gUB-Yh2NBGRsRCIGl7GXKJXJYTL4u0qSqPOQbe4DLY8wnMhKHpwElV-KF7wHPHehWuRg9MRPJPjkzBadySsLtQm2t35DFSgXJrcZfPMe4xVIYAw0YA4TmB41Y5zTlVCt3bDjag&h=v07VduR--Nkwo4VbepDkFxlS3Hj-g8hWf5u1LyPN6zs
cache-control:
- no-cache
content-length:
- '0'
date:
- - Wed, 06 Dec 2023 08:38:50 GMT
+ - Tue, 11 Feb 2025 04:21:15 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/49974412-caa1-45b4-8dae-6cd5ea06b4e9?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2020-06-01&t=638374487307875117&c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M&s=XQaPp3j8F4OqrdoMShp_UtifYxjWDC4ep6SgkhfpzZdMf6S41OjTxxSR8S0vL4LazqdZosFaAFngTXpza_kLNF0tUAKuRTsmeuoEWjgYCGxcXqUgto28efvjNyoVFx7TT5TVJpPGHyatFMW5rkLDLeq3PvBWbI2PCCfc8S1B7m9W1tU3reBwAUdmjyCtHFcbMx7I95bwWBBnVhYF7ZWU6fW8GhfjLj7_gXGNqpKldop8-1yHqNQV-e1Aw1i6G_rF5210dh_2VIoKysPLrpqH51xPwmi2QB6Z7CW5I7d_GIUSjaPstShiJyUkqnbamfNWZwuKeCLiRL5uevT1gw_j8A&h=iQsmKt4GdaSGSo7u2NTJ6sNMVrTUJZ5rH8H_HXS0-FU
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/32bd7359-aa8b-4530-9c2f-9bf3390e663c?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2020-06-01&t=638748444762293968&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=j0wZaDzCZH0SgCr48dis6U09nT7p-MnrudZapZcjL76OvuLFZ28YMVhWg0E4md--JjL26py0w712g3ioyo19GpLElJHm42A0-E4xFspUumYjlfDYcJfFPj8U77yvJnzdS11GZPERBh9RaYeDFobsB9i9cv2MMRouc4yYYgc8K9obNG-zsIutKaYlABeBV7MltwcOWxR5nRargsHy25yNMfItrnlzYDcyewhhl-9-peSOgnnCTI_9UiksL0JkaDFvGB2mnZ7BW7At8hdoYRgxmUYEk-TgktfO-ht6m3qFMLYbtX7M82mjPNPWUIBMUFNE2WlXeLnUGdSIjPzpcbheag&h=tRZDhp0H5o0tAVbKdxvuDF-rTbwTJj2_VkGSdoBJRgk
pragma:
- no-cache
strict-transport-security:
@@ -685,14 +929,18 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/DeleteVMScaleSetSubscriptionMaximum;524,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;5998,Microsoft.Compute/VmssQueuedVMOperations;0
+ - Microsoft.Compute/DeleteVMScaleSetSubscriptionMaximum;524,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;5994,Microsoft.Compute/VmssQueuedVMOperations;0
+ x-ms-ratelimit-remaining-subscription-global-writes:
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '199'
x-ms-request-charge:
- '2'
x-msedge-ref:
- - 'Ref A: 2CA4A743D96C4D3B963A9817942B1251 Ref B: TYO201100113051 Ref C: 2023-12-06T08:38:50Z'
+ - 'Ref A: BE4FAB460BE24995A815719B860AF00B Ref B: SEL221051801039 Ref C: 2025-02-11T04:21:15Z'
status:
code: 202
message: ''
@@ -710,61 +958,13 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/49974412-caa1-45b4-8dae-6cd5ea06b4e9?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638374487307718453&c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M&s=vQLH7ZwvRHqkqCd3Ho9WZnN3JLKMd3KXxxe5bhuNuXw0SouudFne7k7ky6VvJu78e-BbU_XpgiTzC2xG52GivhpHMQ3Fn-mbmhBs_ssvLVGsLIcuJv3jL6eqaOpf0Uo46CkOfg-zMfQihXI5Hzo5c-I6dbvVAhOvCVPHgpXcRi86PQAuaoHHj0sAbzCLrj_e5DvrmCGUycKUCsodOXGVWpNRpE-Q9M2uU8Quih-P2yrjm991JHs6Uocg63MkEL-yxg0uQjXDMskUzbSX7yWXIdqPz-D_DbtnlclCpyAVmQa1YJxOynMoBeRDatblCQxy-gPj0EzWwywm-BOeJt1Uhg&h=V5-pRtmF6qsQM6cKuETSjHMO4HiFAjiws2l1xC1BS7c
- response:
- body:
- string: "{\r\n \"startTime\": \"2023-12-06T08:38:50.6821006+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"49974412-caa1-45b4-8dae-6cd5ea06b4e9\"\
- \r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '134'
- content-type:
- - application/json; charset=utf-8
- date:
- - Wed, 06 Dec 2023 08:38: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-resource:
- - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14996
- x-msedge-ref:
- - 'Ref A: BD57C26B7CE84B3CA29C34FD1AC64E0A Ref B: TYO201100113051 Ref C: 2023-12-06T08:38:50Z'
- status:
- code: 200
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - vmss deallocate
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n
- User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/49974412-caa1-45b4-8dae-6cd5ea06b4e9?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638374487307718453&c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M&s=vQLH7ZwvRHqkqCd3Ho9WZnN3JLKMd3KXxxe5bhuNuXw0SouudFne7k7ky6VvJu78e-BbU_XpgiTzC2xG52GivhpHMQ3Fn-mbmhBs_ssvLVGsLIcuJv3jL6eqaOpf0Uo46CkOfg-zMfQihXI5Hzo5c-I6dbvVAhOvCVPHgpXcRi86PQAuaoHHj0sAbzCLrj_e5DvrmCGUycKUCsodOXGVWpNRpE-Q9M2uU8Quih-P2yrjm991JHs6Uocg63MkEL-yxg0uQjXDMskUzbSX7yWXIdqPz-D_DbtnlclCpyAVmQa1YJxOynMoBeRDatblCQxy-gPj0EzWwywm-BOeJt1Uhg&h=V5-pRtmF6qsQM6cKuETSjHMO4HiFAjiws2l1xC1BS7c
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/32bd7359-aa8b-4530-9c2f-9bf3390e663c?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638748444762138095&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=nFwRaVcpPy5fWndWNOBa_FR3HMl-gqoFD9wSjHbCTTvHIBceYctSo-1TkVfvbJk7sOBT8MzpOSmtA-FoQTwZOGJ9Hhi7BFvBqyWkLuFItP02GeP9unLuSs9fuKJ0CyDv2YPNuCoLikJgGaCFGbUMCj2t9-WZ0a369j9bTlxRh84kFHKZWSoPTg_F9VtJfytNIrUKIUIN1HyjI1X0gUB-Yh2NBGRsRCIGl7GXKJXJYTL4u0qSqPOQbe4DLY8wnMhKHpwElV-KF7wHPHehWuRg9MRPJPjkzBadySsLtQm2t35DFSgXJrcZfPMe4xVIYAw0YA4TmB41Y5zTlVCt3bDjag&h=v07VduR--Nkwo4VbepDkFxlS3Hj-g8hWf5u1LyPN6zs
response:
body:
- string: "{\r\n \"startTime\": \"2023-12-06T08:38:50.6821006+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"49974412-caa1-45b4-8dae-6cd5ea06b4e9\"\
+ string: "{\r\n \"startTime\": \"2025-02-11T04:21:16.1092158+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"32bd7359-aa8b-4530-9c2f-9bf3390e663c\"\
\r\n}"
headers:
cache-control:
@@ -774,7 +974,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:39:21 GMT
+ - Tue, 11 Feb 2025 04:21:16 GMT
expires:
- '-1'
pragma:
@@ -785,10 +985,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14986
+ - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14997
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 1AE944475F734FE09F04C128133127A0 Ref B: TYO201100113051 Ref C: 2023-12-06T08:39:21Z'
+ - 'Ref A: 6E98C2A3DF2D45CBBD33E3A1CA3A4FA4 Ref B: SEL221051801039 Ref C: 2025-02-11T04:21:16Z'
status:
code: 200
message: ''
@@ -806,14 +1010,14 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/49974412-caa1-45b4-8dae-6cd5ea06b4e9?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638374487307718453&c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M&s=vQLH7ZwvRHqkqCd3Ho9WZnN3JLKMd3KXxxe5bhuNuXw0SouudFne7k7ky6VvJu78e-BbU_XpgiTzC2xG52GivhpHMQ3Fn-mbmhBs_ssvLVGsLIcuJv3jL6eqaOpf0Uo46CkOfg-zMfQihXI5Hzo5c-I6dbvVAhOvCVPHgpXcRi86PQAuaoHHj0sAbzCLrj_e5DvrmCGUycKUCsodOXGVWpNRpE-Q9M2uU8Quih-P2yrjm991JHs6Uocg63MkEL-yxg0uQjXDMskUzbSX7yWXIdqPz-D_DbtnlclCpyAVmQa1YJxOynMoBeRDatblCQxy-gPj0EzWwywm-BOeJt1Uhg&h=V5-pRtmF6qsQM6cKuETSjHMO4HiFAjiws2l1xC1BS7c
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/32bd7359-aa8b-4530-9c2f-9bf3390e663c?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638748444762138095&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=nFwRaVcpPy5fWndWNOBa_FR3HMl-gqoFD9wSjHbCTTvHIBceYctSo-1TkVfvbJk7sOBT8MzpOSmtA-FoQTwZOGJ9Hhi7BFvBqyWkLuFItP02GeP9unLuSs9fuKJ0CyDv2YPNuCoLikJgGaCFGbUMCj2t9-WZ0a369j9bTlxRh84kFHKZWSoPTg_F9VtJfytNIrUKIUIN1HyjI1X0gUB-Yh2NBGRsRCIGl7GXKJXJYTL4u0qSqPOQbe4DLY8wnMhKHpwElV-KF7wHPHehWuRg9MRPJPjkzBadySsLtQm2t35DFSgXJrcZfPMe4xVIYAw0YA4TmB41Y5zTlVCt3bDjag&h=v07VduR--Nkwo4VbepDkFxlS3Hj-g8hWf5u1LyPN6zs
response:
body:
- string: "{\r\n \"startTime\": \"2023-12-06T08:38:50.6821006+00:00\",\r\n \"\
- endTime\": \"2023-12-06T08:39:25.1353747+00:00\",\r\n \"status\": \"Succeeded\"\
- ,\r\n \"name\": \"49974412-caa1-45b4-8dae-6cd5ea06b4e9\"\r\n}"
+ string: "{\r\n \"startTime\": \"2025-02-11T04:21:16.1092158+00:00\",\r\n \"\
+ endTime\": \"2025-02-11T04:21:31.0001269+00:00\",\r\n \"status\": \"Succeeded\"\
+ ,\r\n \"name\": \"32bd7359-aa8b-4530-9c2f-9bf3390e663c\"\r\n}"
headers:
cache-control:
- no-cache
@@ -822,7 +1026,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:39:51 GMT
+ - Tue, 11 Feb 2025 04:21:46 GMT
expires:
- '-1'
pragma:
@@ -833,10 +1037,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998
+ - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14995
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3748'
x-msedge-ref:
- - 'Ref A: 0A77D398304D4CC199CA63D97CA68038 Ref B: TYO201100113051 Ref C: 2023-12-06T08:39:51Z'
+ - 'Ref A: 36BD17E6F9864C29BCF460B88F4CA74E Ref B: SEL221051801039 Ref C: 2025-02-11T04:21:46Z'
status:
code: 200
message: ''
@@ -854,9 +1062,9 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/49974412-caa1-45b4-8dae-6cd5ea06b4e9?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2020-06-01&t=638374487307875117&c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M&s=XQaPp3j8F4OqrdoMShp_UtifYxjWDC4ep6SgkhfpzZdMf6S41OjTxxSR8S0vL4LazqdZosFaAFngTXpza_kLNF0tUAKuRTsmeuoEWjgYCGxcXqUgto28efvjNyoVFx7TT5TVJpPGHyatFMW5rkLDLeq3PvBWbI2PCCfc8S1B7m9W1tU3reBwAUdmjyCtHFcbMx7I95bwWBBnVhYF7ZWU6fW8GhfjLj7_gXGNqpKldop8-1yHqNQV-e1Aw1i6G_rF5210dh_2VIoKysPLrpqH51xPwmi2QB6Z7CW5I7d_GIUSjaPstShiJyUkqnbamfNWZwuKeCLiRL5uevT1gw_j8A&h=iQsmKt4GdaSGSo7u2NTJ6sNMVrTUJZ5rH8H_HXS0-FU
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/32bd7359-aa8b-4530-9c2f-9bf3390e663c?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2020-06-01&t=638748444762293968&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=j0wZaDzCZH0SgCr48dis6U09nT7p-MnrudZapZcjL76OvuLFZ28YMVhWg0E4md--JjL26py0w712g3ioyo19GpLElJHm42A0-E4xFspUumYjlfDYcJfFPj8U77yvJnzdS11GZPERBh9RaYeDFobsB9i9cv2MMRouc4yYYgc8K9obNG-zsIutKaYlABeBV7MltwcOWxR5nRargsHy25yNMfItrnlzYDcyewhhl-9-peSOgnnCTI_9UiksL0JkaDFvGB2mnZ7BW7At8hdoYRgxmUYEk-TgktfO-ht6m3qFMLYbtX7M82mjPNPWUIBMUFNE2WlXeLnUGdSIjPzpcbheag&h=tRZDhp0H5o0tAVbKdxvuDF-rTbwTJj2_VkGSdoBJRgk
response:
body:
string: ''
@@ -866,7 +1074,7 @@ interactions:
content-length:
- '0'
date:
- - Wed, 06 Dec 2023 08:39:52 GMT
+ - Tue, 11 Feb 2025 04:21:46 GMT
expires:
- '-1'
pragma:
@@ -877,10 +1085,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14996
+ - Microsoft.Compute/GetOperationResource;41,Microsoft.Compute/GetOperationSubscriptionMaximum;14994
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: ACFDFC744E154D36A43183FB2652B15E Ref B: TYO201100113051 Ref C: 2023-12-06T08:39:52Z'
+ - 'Ref A: 15C703EB118D45FBBB835A1EBB9D9F02 Ref B: SEL221051801039 Ref C: 2025-02-11T04:21:46Z'
status:
code: 200
message: ''
@@ -898,7 +1110,7 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-06-01
response:
@@ -910,7 +1122,7 @@ interactions:
: {\r\n \"singlePlacementGroup\": true,\r\n \"orchestrationMode\": \"\
Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n \
\ },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \
- \ \"computerNamePrefix\": \"vmss1d51d\",\r\n \"adminUsername\"\
+ \ \"computerNamePrefix\": \"vmss1c1aa\",\r\n \"adminUsername\"\
: \"debian\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\
: true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n \
\ {\r\n \"path\": \"/home/debian/.ssh/authorized_keys\"\
@@ -926,26 +1138,26 @@ interactions:
: {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\"\
,\r\n \"sku\": \"10\",\r\n \"version\": \"latest\"\r\n \
\ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\
- :[{\"name\":\"vmss1d51dNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\
- :false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"\
- ipConfigurations\":[{\"name\":\"vmss1d51dIPConfig\",\"properties\":{\"subnet\"\
- :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"\
+ :[{\"name\":\"vmss1c1aaNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\
+ :false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1\"\
+ },\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\
+ :[{\"name\":\"vmss1c1aaIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"\
},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\
:[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"\
}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"\
}]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\":\
- \ false,\r\n \"uniqueId\": \"1c2d2563-3905-4da5-8fd8-514b48429c85\"\r\n\
- \ }\r\n}"
+ \ false,\r\n \"uniqueId\": \"1352fb2e-76b1-48b8-9870-89134c6adac7\",\r\n\
+ \ \"platformFaultDomainCount\": 5\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '3436'
+ - '3653'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:40:23 GMT
+ - Tue, 11 Feb 2025 04:22:17 GMT
expires:
- '-1'
pragma:
@@ -956,31 +1168,37 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2397,Microsoft.Compute/GetVMScaleSetResource;34
+ - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2399,Microsoft.Compute/GetVMScaleSetResource;35
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: FDF97C5D38174C9D83298596C0E6EA5E Ref B: TYO201100116037 Ref C: 2023-12-06T08:40:23Z'
+ - 'Ref A: 85CC767DA46E4E01930C8451ECF4BD4F Ref B: SEL221051804033 Ref C: 2025-02-11T04:22:18Z'
status:
code: 200
message: ''
- request:
body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_DS1_v2", "tier":
"Standard", "capacity": 2}, "properties": {"upgradePolicy": {"mode": "Manual"},
- "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "vmss1d51d", "adminUsername":
+ "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "vmss1c1aa", "adminUsername":
"debian", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh":
{"publicKeys": [{"path": "/home/debian/.ssh/authorized_keys", "keyData": "ssh-rsa
AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==
test@example.com\n"}]}, "provisionVMAgent": true}, "secrets": []}, "storageProfile":
{"osDisk": {"caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB":
30, "osType": "Linux", "managedDisk": {"storageAccountType": "Premium_LRS"}}},
- "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss1d51dNic",
- "properties": {"primary": true, "dnsSettings": {"dnsServers": []}, "ipConfigurations":
- [{"name": "vmss1d51dIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},
+ "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss1c1aaNic",
+ "properties": {"primary": true, "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1"},
+ "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "vmss1c1aaIPConfig",
+ "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},
"privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id":
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],
"loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}],
"enableIPForwarding": false}}]}}, "overprovision": true, "doNotRunExtensionsOnOverprovisionedVMs":
- false, "singlePlacementGroup": true, "proximityPlacementGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/proximityPlacementGroups/ppg1"}}}'
+ false, "singlePlacementGroup": true, "platformFaultDomainCount": 5, "proximityPlacementGroup":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/proximityPlacementGroups/ppg1"}}}'
headers:
Accept:
- application/json
@@ -991,13 +1209,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '2581'
+ - '2796'
Content-Type:
- application/json
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-06-01
response:
@@ -1008,9 +1226,9 @@ interactions:
,\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\
: {\r\n \"singlePlacementGroup\": true,\r\n \"orchestrationMode\": \"\
Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n \
- \ },\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_CCI4PDVFMB5VGZCNSTQZIO4P54CQW555KOTOPEULTYICI2UIHECYNSN/providers/Microsoft.Compute/proximityPlacementGroups/ppg1\"\
+ \ },\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_4V2MRFOPBJFWDRINRBWPH5XYSF6EPXHVFEQZYU7YW6ZCLPJ5VQEGRHV/providers/Microsoft.Compute/proximityPlacementGroups/ppg1\"\
\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\
- \n \"computerNamePrefix\": \"vmss1d51d\",\r\n \"adminUsername\"\
+ \n \"computerNamePrefix\": \"vmss1c1aa\",\r\n \"adminUsername\"\
: \"debian\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\
: true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n \
\ {\r\n \"path\": \"/home/debian/.ssh/authorized_keys\"\
@@ -1026,30 +1244,30 @@ interactions:
: {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\"\
,\r\n \"sku\": \"10\",\r\n \"version\": \"latest\"\r\n \
\ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\
- :[{\"name\":\"vmss1d51dNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\
- :false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"\
- ipConfigurations\":[{\"name\":\"vmss1d51dIPConfig\",\"properties\":{\"subnet\"\
- :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"\
+ :[{\"name\":\"vmss1c1aaNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\
+ :false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1\"\
+ },\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\
+ :[{\"name\":\"vmss1c1aaIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"\
},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\
:[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"\
}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"\
}]}}]}}]}\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"\
overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\":\
- \ false,\r\n \"uniqueId\": \"1c2d2563-3905-4da5-8fd8-514b48429c85\"\r\n\
- \ }\r\n}"
+ \ false,\r\n \"uniqueId\": \"1352fb2e-76b1-48b8-9870-89134c6adac7\",\r\n\
+ \ \"platformFaultDomainCount\": 5\r\n }\r\n}"
headers:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/478bb3a6-5f22-41de-a299-60b08a3c3c3b?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638374488294763191&c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M&s=18ene6XrqZjGwmqgQ7rSyyoWm_JErdZbWH8yXgeosaCIYaj1KISTlq5tGMY6Ebu1dmCBot2mYI5xzkuk1trWfdvnflhIVybNEQMSCREQ9aBsCPXxBVY5HeDeotsMk5pJn_OPkf-Sq-9bGZtJsulOvkUfLhEGzn0n81lHI_1mZT8XtEVHVOkwB62oo0V3w4kN46PHqwd1aQviId7GzZhaLtOik0lroEBEpJT9gSl5OUkvnz87y0m6BsgHVLppstdvGDs1IzAc5f4CDuhUSiceY9Dm1eltAsHkNtSGhbfirHE8TCCvNzDQD7BagypzmMUIrNZQ-08-BoiGB7DX-qdHCw&h=Yj0hu0O1MgjpsibrCbPDDqE-KO0bHtcUANWzmwefRXk
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/8a07ed31-df35-4faa-8e56-f0f3cffdbb1a?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638748445480686591&c=MIIHhzCCBm-gAwIBAgITfAahf2YBi51sACVGogAABqF_ZjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTI3MDkwMDEzWhcNMjUwNzI2MDkwMDEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK_9Fjx9gJVYQgRAHLU0j-VCH80fBm6rpVOsvzj5SDwsaI9xyXtYDEkwEdfK9TTQKB6oTtNgtqVmEFCZL1KyM9L2gcrky6juVqazMbM8YFetedRREdD6fRWosycnI0cqMn6wireRII1dHDoc5-8vd1sbiUvz6au6lLPFyN6AO-jGxf9b9omu8SmgV3chKF-Y0eBL-ZGnebRQVPRpKhppk79NCo_JLXh4V3Oc7i8gNasTzOkiA3B_9sG8xngJ7X2PeVE3WaoBdYvjq9jgfD6L1uXW4rh6HswXzuODIHTD-77J1UDoh6DOqwV_wKJyD7w7u93h3T7UBJzQ1SI9UOfCFkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSwAr6mDGl652Wl580LOyJfziciQDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFmX5DX-YWdy0W1xV9krGpJbbRztEQorQsVO2277VhShjAaVCewHYAtoceQEwzbFwm9yR0B5rIraVS07CFguHNwEywWJyTZ6BC_IgAFHPng3fX_3HDkPwF3YqtbSbc23GjYzdmBSXR_kG2s7ZM9eMuRpoayXBJvfkRXFtFEEKnL4pyiZjVbl-dMrkf8-riqGaKufEScRz2H2azJjzzD90RBxLz2ZnHIF7GVChUTMdVB4P0C8I9KJqfsNyEs8A1Wi_22t8ZFo0BCEfE7xDvCbRaRaLQGr53nydnj2gGTBqSjPyrinSGcOF8gKQ_YJ5xmnYSy9bhJC7dkolxy6GDe2mRY&s=mBNmpfCnJGw13GJSVY11CtSQ4s5WUCghUkTsYyJqycroz5tySPY9-REcYnXXoyktqeTMt2ZM61EbqmMY9IGCbzOwP9hw53hx0YFLemNw3Hvb9q79lLuIMvCuMopvtyAsz2K6cJQskfy7Kt8XgLUZSp7dNIrKWjXFlZI2R1m7eY29jV-Pa0AgU5OhZJqGDBeYdHejR0sBuX5cyYyavPbt8o04KinsSUb6Ex9xEYCOgn_p54gEUyk9frKHJXC4hJi70nS4BEcxHS5WMcUXy7ugU0_qvrYiNzNepfYGV5Gm_-lbQSu3yQun0duhRgYqYW3Q8zUrBPkIcPmDpAuyQ5drUA&h=MdfOGG5rhJA_QltEec0towa7nMpQ2Kteow5enFdacqc
cache-control:
- no-cache
content-length:
- - '3693'
+ - '3910'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:40:28 GMT
+ - Tue, 11 Feb 2025 04:22:27 GMT
expires:
- '-1'
pragma:
@@ -1060,14 +1278,18 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateVMScaleSetSubscriptionMaximum;374,Microsoft.Compute/CreateVMScaleSetResource;11,Microsoft.Compute/VmssQueuedVMOperations;0
+ - Microsoft.Compute/CreateVMScaleSetSubscriptionMaximum;374,Microsoft.Compute/CreateVMScaleSetResource;11,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;6000,Microsoft.Compute/VmssQueuedVMOperations;0
+ x-ms-ratelimit-remaining-subscription-global-writes:
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '1194'
+ - '199'
x-ms-request-charge:
- '0'
x-msedge-ref:
- - 'Ref A: AEF3EBE9CF834E70B944AB12FF4B95F4 Ref B: TYO201100116051 Ref C: 2023-12-06T08:40:24Z'
+ - 'Ref A: 032DCA80260C41C69B9392FF60E3BB95 Ref B: SEL221051805033 Ref C: 2025-02-11T04:22:18Z'
status:
code: 200
message: ''
@@ -1085,14 +1307,66 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/478bb3a6-5f22-41de-a299-60b08a3c3c3b?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638374488294763191&c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M&s=18ene6XrqZjGwmqgQ7rSyyoWm_JErdZbWH8yXgeosaCIYaj1KISTlq5tGMY6Ebu1dmCBot2mYI5xzkuk1trWfdvnflhIVybNEQMSCREQ9aBsCPXxBVY5HeDeotsMk5pJn_OPkf-Sq-9bGZtJsulOvkUfLhEGzn0n81lHI_1mZT8XtEVHVOkwB62oo0V3w4kN46PHqwd1aQviId7GzZhaLtOik0lroEBEpJT9gSl5OUkvnz87y0m6BsgHVLppstdvGDs1IzAc5f4CDuhUSiceY9Dm1eltAsHkNtSGhbfirHE8TCCvNzDQD7BagypzmMUIrNZQ-08-BoiGB7DX-qdHCw&h=Yj0hu0O1MgjpsibrCbPDDqE-KO0bHtcUANWzmwefRXk
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/8a07ed31-df35-4faa-8e56-f0f3cffdbb1a?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638748445480686591&c=MIIHhzCCBm-gAwIBAgITfAahf2YBi51sACVGogAABqF_ZjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTI3MDkwMDEzWhcNMjUwNzI2MDkwMDEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK_9Fjx9gJVYQgRAHLU0j-VCH80fBm6rpVOsvzj5SDwsaI9xyXtYDEkwEdfK9TTQKB6oTtNgtqVmEFCZL1KyM9L2gcrky6juVqazMbM8YFetedRREdD6fRWosycnI0cqMn6wireRII1dHDoc5-8vd1sbiUvz6au6lLPFyN6AO-jGxf9b9omu8SmgV3chKF-Y0eBL-ZGnebRQVPRpKhppk79NCo_JLXh4V3Oc7i8gNasTzOkiA3B_9sG8xngJ7X2PeVE3WaoBdYvjq9jgfD6L1uXW4rh6HswXzuODIHTD-77J1UDoh6DOqwV_wKJyD7w7u93h3T7UBJzQ1SI9UOfCFkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSwAr6mDGl652Wl580LOyJfziciQDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFmX5DX-YWdy0W1xV9krGpJbbRztEQorQsVO2277VhShjAaVCewHYAtoceQEwzbFwm9yR0B5rIraVS07CFguHNwEywWJyTZ6BC_IgAFHPng3fX_3HDkPwF3YqtbSbc23GjYzdmBSXR_kG2s7ZM9eMuRpoayXBJvfkRXFtFEEKnL4pyiZjVbl-dMrkf8-riqGaKufEScRz2H2azJjzzD90RBxLz2ZnHIF7GVChUTMdVB4P0C8I9KJqfsNyEs8A1Wi_22t8ZFo0BCEfE7xDvCbRaRaLQGr53nydnj2gGTBqSjPyrinSGcOF8gKQ_YJ5xmnYSy9bhJC7dkolxy6GDe2mRY&s=mBNmpfCnJGw13GJSVY11CtSQ4s5WUCghUkTsYyJqycroz5tySPY9-REcYnXXoyktqeTMt2ZM61EbqmMY9IGCbzOwP9hw53hx0YFLemNw3Hvb9q79lLuIMvCuMopvtyAsz2K6cJQskfy7Kt8XgLUZSp7dNIrKWjXFlZI2R1m7eY29jV-Pa0AgU5OhZJqGDBeYdHejR0sBuX5cyYyavPbt8o04KinsSUb6Ex9xEYCOgn_p54gEUyk9frKHJXC4hJi70nS4BEcxHS5WMcUXy7ugU0_qvrYiNzNepfYGV5Gm_-lbQSu3yQun0duhRgYqYW3Q8zUrBPkIcPmDpAuyQ5drUA&h=MdfOGG5rhJA_QltEec0towa7nMpQ2Kteow5enFdacqc
response:
body:
- string: "{\r\n \"startTime\": \"2023-12-06T08:40:29.1202449+00:00\",\r\n \"\
- endTime\": \"2023-12-06T08:40:29.4639937+00:00\",\r\n \"status\": \"Succeeded\"\
- ,\r\n \"name\": \"478bb3a6-5f22-41de-a299-60b08a3c3c3b\"\r\n}"
+ string: "{\r\n \"startTime\": \"2025-02-11T04:22:27.7357502+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"8a07ed31-df35-4faa-8e56-f0f3cffdbb1a\"\
+ \r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 11 Feb 2025 04:22: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-need-to-refresh-epl-cache:
+ - 'False'
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14999
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
+ x-msedge-ref:
+ - 'Ref A: EE5A855236654A438E8E1FECB4B4990F Ref B: SEL221051805033 Ref C: 2025-02-11T04:22:28Z'
+ status:
+ code: 200
+ message: ''
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --ppg
+ User-Agent:
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/8a07ed31-df35-4faa-8e56-f0f3cffdbb1a?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638748445480686591&c=MIIHhzCCBm-gAwIBAgITfAahf2YBi51sACVGogAABqF_ZjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTI3MDkwMDEzWhcNMjUwNzI2MDkwMDEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK_9Fjx9gJVYQgRAHLU0j-VCH80fBm6rpVOsvzj5SDwsaI9xyXtYDEkwEdfK9TTQKB6oTtNgtqVmEFCZL1KyM9L2gcrky6juVqazMbM8YFetedRREdD6fRWosycnI0cqMn6wireRII1dHDoc5-8vd1sbiUvz6au6lLPFyN6AO-jGxf9b9omu8SmgV3chKF-Y0eBL-ZGnebRQVPRpKhppk79NCo_JLXh4V3Oc7i8gNasTzOkiA3B_9sG8xngJ7X2PeVE3WaoBdYvjq9jgfD6L1uXW4rh6HswXzuODIHTD-77J1UDoh6DOqwV_wKJyD7w7u93h3T7UBJzQ1SI9UOfCFkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSwAr6mDGl652Wl580LOyJfziciQDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFmX5DX-YWdy0W1xV9krGpJbbRztEQorQsVO2277VhShjAaVCewHYAtoceQEwzbFwm9yR0B5rIraVS07CFguHNwEywWJyTZ6BC_IgAFHPng3fX_3HDkPwF3YqtbSbc23GjYzdmBSXR_kG2s7ZM9eMuRpoayXBJvfkRXFtFEEKnL4pyiZjVbl-dMrkf8-riqGaKufEScRz2H2azJjzzD90RBxLz2ZnHIF7GVChUTMdVB4P0C8I9KJqfsNyEs8A1Wi_22t8ZFo0BCEfE7xDvCbRaRaLQGr53nydnj2gGTBqSjPyrinSGcOF8gKQ_YJ5xmnYSy9bhJC7dkolxy6GDe2mRY&s=mBNmpfCnJGw13GJSVY11CtSQ4s5WUCghUkTsYyJqycroz5tySPY9-REcYnXXoyktqeTMt2ZM61EbqmMY9IGCbzOwP9hw53hx0YFLemNw3Hvb9q79lLuIMvCuMopvtyAsz2K6cJQskfy7Kt8XgLUZSp7dNIrKWjXFlZI2R1m7eY29jV-Pa0AgU5OhZJqGDBeYdHejR0sBuX5cyYyavPbt8o04KinsSUb6Ex9xEYCOgn_p54gEUyk9frKHJXC4hJi70nS4BEcxHS5WMcUXy7ugU0_qvrYiNzNepfYGV5Gm_-lbQSu3yQun0duhRgYqYW3Q8zUrBPkIcPmDpAuyQ5drUA&h=MdfOGG5rhJA_QltEec0towa7nMpQ2Kteow5enFdacqc
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2025-02-11T04:22:27.7357502+00:00\",\r\n \"\
+ endTime\": \"2025-02-11T04:22:29.3764816+00:00\",\r\n \"status\": \"Succeeded\"\
+ ,\r\n \"name\": \"8a07ed31-df35-4faa-8e56-f0f3cffdbb1a\"\r\n}"
headers:
cache-control:
- no-cache
@@ -1101,7 +1375,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:40:29 GMT
+ - Tue, 11 Feb 2025 04:23:05 GMT
expires:
- '-1'
pragma:
@@ -1112,10 +1386,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14988
+ - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14999
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3748'
x-msedge-ref:
- - 'Ref A: BEA0315070084897B280B2227C780488 Ref B: TYO201100116051 Ref C: 2023-12-06T08:40:29Z'
+ - 'Ref A: 83FB2A9144444623AF5AB0B78A84E797 Ref B: SEL221051805033 Ref C: 2025-02-11T04:23:05Z'
status:
code: 200
message: ''
@@ -1133,7 +1411,7 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-06-01
response:
@@ -1144,9 +1422,9 @@ interactions:
,\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\
: {\r\n \"singlePlacementGroup\": true,\r\n \"orchestrationMode\": \"\
Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n \
- \ },\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_CCI4PDVFMB5VGZCNSTQZIO4P54CQW555KOTOPEULTYICI2UIHECYNSN/providers/Microsoft.Compute/proximityPlacementGroups/ppg1\"\
+ \ },\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_4V2MRFOPBJFWDRINRBWPH5XYSF6EPXHVFEQZYU7YW6ZCLPJ5VQEGRHV/providers/Microsoft.Compute/proximityPlacementGroups/ppg1\"\
\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\
- \n \"computerNamePrefix\": \"vmss1d51d\",\r\n \"adminUsername\"\
+ \n \"computerNamePrefix\": \"vmss1c1aa\",\r\n \"adminUsername\"\
: \"debian\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\
: true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n \
\ {\r\n \"path\": \"/home/debian/.ssh/authorized_keys\"\
@@ -1162,26 +1440,26 @@ interactions:
: {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\"\
,\r\n \"sku\": \"10\",\r\n \"version\": \"latest\"\r\n \
\ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\
- :[{\"name\":\"vmss1d51dNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\
- :false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"\
- ipConfigurations\":[{\"name\":\"vmss1d51dIPConfig\",\"properties\":{\"subnet\"\
- :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"\
+ :[{\"name\":\"vmss1c1aaNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\
+ :false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1\"\
+ },\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\
+ :[{\"name\":\"vmss1c1aaIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"\
},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\
:[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"\
}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"\
}]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\":\
- \ false,\r\n \"uniqueId\": \"1c2d2563-3905-4da5-8fd8-514b48429c85\"\r\n\
- \ }\r\n}"
+ \ false,\r\n \"uniqueId\": \"1352fb2e-76b1-48b8-9870-89134c6adac7\",\r\n\
+ \ \"platformFaultDomainCount\": 5\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '3694'
+ - '3911'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:40:30 GMT
+ - Tue, 11 Feb 2025 04:23:06 GMT
expires:
- '-1'
pragma:
@@ -1192,10 +1470,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2399,Microsoft.Compute/GetVMScaleSetResource;32
+ - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2399,Microsoft.Compute/GetVMScaleSetResource;35
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 2F675D6A97D04316ABDF150767076D9F Ref B: TYO201100116051 Ref C: 2023-12-06T08:40:30Z'
+ - 'Ref A: C5902833DD934F0B9466160AA29CA111 Ref B: SEL221051805033 Ref C: 2025-02-11T04:23:06Z'
status:
code: 200
message: ''
@@ -1213,21 +1495,21 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --nsg-rule
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001?api-version=2019-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001","name":"cli_test_ppg_update_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_update","date":"2023-12-06T08:37:32Z","module":"vm","DateCreated":"2023-12-06T08:39:13Z","Creator":"test@example.com"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001","name":"cli_test_ppg_update_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_update","date":"2025-02-11T04:19:41Z","module":"vm","Creator":"zhuyan@microsoft.com","DateCreated":"2025-02-11T04:19:46Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
content-length:
- - '445'
+ - '439'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:40:30 GMT
+ - Tue, 11 Feb 2025 04:23:06 GMT
expires:
- '-1'
pragma:
@@ -1238,8 +1520,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 2E157A333E66442FAA71280B5CFC06EB Ref B: TYO201100117039 Ref C: 2023-12-06T08:40:31Z'
+ - 'Ref A: 29B18BA9E01B41AA80EDB247DEEADC71 Ref B: SEL221051503049 Ref C: 2025-02-11T04:23:07Z'
status:
code: 200
message: OK
@@ -1257,13 +1541,13 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --nsg-rule
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2020-06-01
response:
body:
- string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20230802.1460\"\
- ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20230802.1460\"\
+ string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240430.1733\"\
+ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\
\r\n }\r\n]"
headers:
cache-control:
@@ -1273,7 +1557,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:40:31 GMT
+ - Tue, 11 Feb 2025 04:23:07 GMT
expires:
- '-1'
pragma:
@@ -1285,9 +1569,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15995,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43974
+ - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43996
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 8364587E023541D4B43AB4E9C90AA565 Ref B: TYO201100117037 Ref C: 2023-12-06T08:40:31Z'
+ - 'Ref A: 896D2A98A15D4C4A9CD9E22A6AE2C37B Ref B: SEL221051504053 Ref C: 2025-02-11T04:23:07Z'
status:
code: 200
message: OK
@@ -1305,9 +1591,9 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --nsg-rule
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20230802.1460?api-version=2020-06-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2020-06-01
response:
body:
string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \
@@ -1322,7 +1608,7 @@ interactions:
,\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\"\
: {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\
\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\"\
- ,\r\n \"name\": \"0.20230802.1460\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20230802.1460\"\
+ ,\r\n \"name\": \"0.20240430.1733\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\
\r\n}"
headers:
cache-control:
@@ -1332,7 +1618,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:40:33 GMT
+ - Tue, 11 Feb 2025 04:23:08 GMT
expires:
- '-1'
pragma:
@@ -1344,9 +1630,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73984
+ - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73997
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3747'
x-msedge-ref:
- - 'Ref A: 1809981466454F2C895E7F488375FC53 Ref B: TYO201100115049 Ref C: 2023-12-06T08:40:32Z'
+ - 'Ref A: 9FCD1928EA3748E0B4576E9A41249F64 Ref B: SEL221051805025 Ref C: 2025-02-11T04:23:08Z'
status:
code: 200
message: OK
@@ -1364,41 +1652,21 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --nsg-rule
User-Agent:
- - AZURECLI/2.55.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-11-01
response:
body:
- string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss1VNET\",\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET\"\
- ,\r\n \"etag\": \"W/\\\"0019cd2e-2b91-46ed-91ee-8ec97695602b\\\"\",\r\
- \n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \
- \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"27aad2ef-62c9-4033-aa45-efee2ce34596\"\
- ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \
- \ \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\"\
- : [\r\n {\r\n \"name\": \"vmss1Subnet\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"\
- ,\r\n \"etag\": \"W/\\\"0019cd2e-2b91-46ed-91ee-8ec97695602b\\\"\
- \",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n\
- \ \"ipConfigurations\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_CCI4PDVFMB5VGZCNSTQZIO4P54CQW555KOTOPEULTYICI2UIHECYNSN/PROVIDERS/MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS/VMSS1/VIRTUALMACHINES/0/NETWORKINTERFACES/VMSS1D51DNIC/ipConfigurations/VMSS1D51DIPCONFIG\"\
- \r\n },\r\n {\r\n \"id\": \"\
- /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_CCI4PDVFMB5VGZCNSTQZIO4P54CQW555KOTOPEULTYICI2UIHECYNSN/PROVIDERS/MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS/VMSS1/VIRTUALMACHINES/2/NETWORKINTERFACES/VMSS1D51DNIC/ipConfigurations/VMSS1D51DIPCONFIG\"\
- \r\n }\r\n ],\r\n \"delegations\"\
- : []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\
- \r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\
- \n \"enableDdosProtection\": false\r\n }\r\n }\r\n ]\r\n}"
+ string: '{"value":[{"name":"vmss1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","etag":"W/\"930b5f73-96c3-45e8-9ac1-3e48895f4a86\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"b31efe83-8470-4f27-8a05-92a486c821f4","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vmss1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet","etag":"W/\"930b5f73-96c3-45e8-9ac1-3e48895f4a86\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_4V2MRFOPBJFWDRINRBWPH5XYSF6EPXHVFEQZYU7YW6ZCLPJ5VQEGRHV/PROVIDERS/MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS/VMSS1/VIRTUALMACHINES/0/NETWORKINTERFACES/VMSS1C1AANIC/ipConfigurations/VMSS1C1AAIPCONFIG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_4V2MRFOPBJFWDRINRBWPH5XYSF6EPXHVFEQZYU7YW6ZCLPJ5VQEGRHV/PROVIDERS/MICROSOFT.COMPUTE/VIRTUALMACHINESCALESETS/VMSS1/VIRTUALMACHINES/1/NETWORKINTERFACES/VMSS1C1AANIC/ipConfigurations/VMSS1C1AAIPCONFIG"}],"delegations":[]},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}]}'
headers:
cache-control:
- no-cache
content-length:
- - '2067'
+ - '1537'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:40:33 GMT
+ - Tue, 11 Feb 2025 04:23:10 GMT
expires:
- '-1'
pragma:
@@ -1410,9 +1678,13 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - d9f1b2db-e092-4438-91a5-62e30372948a
+ - d12a8856-3ed3-42a2-bc66-5dfe8f33b331
+ x-ms-original-request-ids:
+ - a8756933-edd7-441a-979d-9ba7f5331788
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: DD9E10BDB4AC48259BEC55F6E98D72BA Ref B: TYO201100116029 Ref C: 2023-12-06T08:40:33Z'
+ - 'Ref A: 2086A24FEAD245D996BD2D109EFD9393 Ref B: SEL221051805029 Ref C: 2025-02-11T04:23:08Z'
status:
code: 200
message: OK
@@ -1459,15 +1731,15 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --nsg-rule
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/vm_deploy_Rih9hZyijODPMTWXAXLAn7lsnYLTF4ke","name":"vm_deploy_Rih9hZyijODPMTWXAXLAn7lsnYLTF4ke","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4342239908508732228","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-12-06T08:40:38.3020718Z","duration":"PT0.0005699S","correlationId":"6752ad35-30ee-4799-b2d8-e1940692ffcc","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/vm_deploy_qGO5bzUxMSiO2Z7Et3nB6OqG807lnS4e","name":"vm_deploy_qGO5bzUxMSiO2Z7Et3nB6OqG807lnS4e","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4529789820294443222","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-02-11T04:23:16.3016218Z","duration":"PT0.0009304S","correlationId":"ad956e71-b268-4b58-b380-0fd2af4305fa","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/vm_deploy_Rih9hZyijODPMTWXAXLAn7lsnYLTF4ke/operationStatuses/08584997548493445720?api-version=2019-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/vm_deploy_qGO5bzUxMSiO2Z7Et3nB6OqG807lnS4e/operationStatuses/08584623590925254814?api-version=2019-10-01&t=638748445981468535&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=UNjlFygeYwuYJL2lLmxc4XLE0s_bb6mXhmnOVf8YwCDVhSm_bWdINArpB6YQR60k-dVbCdxyopyGXZRnl2X3L_hbrGJufNSxusMCrSJ05FpKo5RTLOnTEUnuA9UzQMGwdvwV_PPNe5GtxkjCUtEsorh1CSePRdA2t0Y8lnV9k7OPhVfTkTuUeAHaL4D2ABsx4jJ-97zoF_9I52t3qohXyk_xnbXUD9ZIsZF3LT7W_GSTGb5mB9GeOTrGVq90Qxu6n-0JwLC0yAhbrRSS17KNYXRfkmfs8yjYyvnmvxl4bIh2ENHXckbdWS52euRJSkvW-4SEdy2Zvu2JagUdJJVuKg&h=ZCFdKdEzBb-fdw-MdutYfgKLdr0D4vCY67SbqBgfPnc
cache-control:
- no-cache
content-length:
@@ -1475,7 +1747,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:40:38 GMT
+ - Tue, 11 Feb 2025 04:23:17 GMT
expires:
- '-1'
pragma:
@@ -1486,10 +1758,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-deployment-engine-version:
+ - 1.224.0
+ x-ms-ratelimit-remaining-subscription-global-writes:
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '1196'
+ - '199'
x-msedge-ref:
- - 'Ref A: 979D1D91B4654ACDAE5C1B39EBFDD2A5 Ref B: TYO201100117035 Ref C: 2023-12-06T08:40:34Z'
+ - 'Ref A: 30931D8894454C998239910DE3876911 Ref B: SEL221051504045 Ref C: 2025-02-11T04:23:11Z'
status:
code: 201
message: Created
@@ -1507,21 +1783,21 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --nsg-rule
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584997548493445720?api-version=2019-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584623590925254814?api-version=2019-10-01&t=638748445981468535&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=UNjlFygeYwuYJL2lLmxc4XLE0s_bb6mXhmnOVf8YwCDVhSm_bWdINArpB6YQR60k-dVbCdxyopyGXZRnl2X3L_hbrGJufNSxusMCrSJ05FpKo5RTLOnTEUnuA9UzQMGwdvwV_PPNe5GtxkjCUtEsorh1CSePRdA2t0Y8lnV9k7OPhVfTkTuUeAHaL4D2ABsx4jJ-97zoF_9I52t3qohXyk_xnbXUD9ZIsZF3LT7W_GSTGb5mB9GeOTrGVq90Qxu6n-0JwLC0yAhbrRSS17KNYXRfkmfs8yjYyvnmvxl4bIh2ENHXckbdWS52euRJSkvW-4SEdy2Zvu2JagUdJJVuKg&h=ZCFdKdEzBb-fdw-MdutYfgKLdr0D4vCY67SbqBgfPnc
response:
body:
- string: '{"status":"Running"}'
+ string: '{"status":"Accepted"}'
headers:
cache-control:
- no-cache
content-length:
- - '20'
+ - '21'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:40:39 GMT
+ - Tue, 11 Feb 2025 04:23:17 GMT
expires:
- '-1'
pragma:
@@ -1532,8 +1808,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: BBFE38E0CF074C889471B80F9106BC0C Ref B: TYO201100117035 Ref C: 2023-12-06T08:40:39Z'
+ - 'Ref A: 862BFFCFD2FE44129659344CF369B7C9 Ref B: SEL221051504045 Ref C: 2025-02-11T04:23:18Z'
status:
code: 200
message: OK
@@ -1551,9 +1829,9 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --nsg-rule
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584997548493445720?api-version=2019-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584623590925254814?api-version=2019-10-01&t=638748445981468535&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=UNjlFygeYwuYJL2lLmxc4XLE0s_bb6mXhmnOVf8YwCDVhSm_bWdINArpB6YQR60k-dVbCdxyopyGXZRnl2X3L_hbrGJufNSxusMCrSJ05FpKo5RTLOnTEUnuA9UzQMGwdvwV_PPNe5GtxkjCUtEsorh1CSePRdA2t0Y8lnV9k7OPhVfTkTuUeAHaL4D2ABsx4jJ-97zoF_9I52t3qohXyk_xnbXUD9ZIsZF3LT7W_GSTGb5mB9GeOTrGVq90Qxu6n-0JwLC0yAhbrRSS17KNYXRfkmfs8yjYyvnmvxl4bIh2ENHXckbdWS52euRJSkvW-4SEdy2Zvu2JagUdJJVuKg&h=ZCFdKdEzBb-fdw-MdutYfgKLdr0D4vCY67SbqBgfPnc
response:
body:
string: '{"status":"Running"}'
@@ -1565,7 +1843,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:41:10 GMT
+ - Tue, 11 Feb 2025 04:23:48 GMT
expires:
- '-1'
pragma:
@@ -1576,8 +1854,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: D37ECB2A7D2449D08EB7233BD5A7146A Ref B: TYO201100117035 Ref C: 2023-12-06T08:41:10Z'
+ - 'Ref A: A8A4FC2F5805463290402AF3D7C13DBD Ref B: SEL221051504045 Ref C: 2025-02-11T04:23:48Z'
status:
code: 200
message: OK
@@ -1595,9 +1875,9 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --nsg-rule
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584997548493445720?api-version=2019-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584623590925254814?api-version=2019-10-01&t=638748445981468535&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=UNjlFygeYwuYJL2lLmxc4XLE0s_bb6mXhmnOVf8YwCDVhSm_bWdINArpB6YQR60k-dVbCdxyopyGXZRnl2X3L_hbrGJufNSxusMCrSJ05FpKo5RTLOnTEUnuA9UzQMGwdvwV_PPNe5GtxkjCUtEsorh1CSePRdA2t0Y8lnV9k7OPhVfTkTuUeAHaL4D2ABsx4jJ-97zoF_9I52t3qohXyk_xnbXUD9ZIsZF3LT7W_GSTGb5mB9GeOTrGVq90Qxu6n-0JwLC0yAhbrRSS17KNYXRfkmfs8yjYyvnmvxl4bIh2ENHXckbdWS52euRJSkvW-4SEdy2Zvu2JagUdJJVuKg&h=ZCFdKdEzBb-fdw-MdutYfgKLdr0D4vCY67SbqBgfPnc
response:
body:
string: '{"status":"Succeeded"}'
@@ -1609,7 +1889,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:41:41 GMT
+ - Tue, 11 Feb 2025 04:24:18 GMT
expires:
- '-1'
pragma:
@@ -1620,8 +1900,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: E9E7B5BDA48746A0B7663E526034C77F Ref B: TYO201100117035 Ref C: 2023-12-06T08:41:40Z'
+ - 'Ref A: EA9B3275110D4CD4A9077C4BF174D4C1 Ref B: SEL221051504045 Ref C: 2025-02-11T04:24:19Z'
status:
code: 200
message: OK
@@ -1639,12 +1921,12 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --nsg-rule
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/vm_deploy_Rih9hZyijODPMTWXAXLAn7lsnYLTF4ke","name":"vm_deploy_Rih9hZyijODPMTWXAXLAn7lsnYLTF4ke","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4342239908508732228","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-12-06T08:41:24.9242878Z","duration":"PT46.6227859S","correlationId":"6752ad35-30ee-4799-b2d8-e1940692ffcc","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/vm_deploy_qGO5bzUxMSiO2Z7Et3nB6OqG807lnS4e","name":"vm_deploy_qGO5bzUxMSiO2Z7Et3nB6OqG807lnS4e","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4529789820294443222","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-02-11T04:24:10.9695782Z","duration":"PT54.6688868S","correlationId":"ad956e71-b268-4b58-b380-0fd2af4305fa","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"}]}}'
headers:
cache-control:
- no-cache
@@ -1653,7 +1935,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:41:41 GMT
+ - Tue, 11 Feb 2025 04:24:19 GMT
expires:
- '-1'
pragma:
@@ -1664,8 +1946,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 1026402E92E74699A14E31F4EE001817 Ref B: TYO201100117035 Ref C: 2023-12-06T08:41:41Z'
+ - 'Ref A: 1CDC95C32FD041D2ADC4DCA09743A503 Ref B: SEL221051504045 Ref C: 2025-02-11T04:24:19Z'
status:
code: 200
message: OK
@@ -1683,7 +1967,7 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --nsg-rule
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-06-01
response:
@@ -1692,15 +1976,15 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"0a3e1daa-0d4a-4d46-ac08-ab3ae5bb427a\"\
+ : \"Succeeded\",\r\n \"vmId\": \"a06c0e7c-9413-49f2-b63d-d58cd2b23b1b\"\
,\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"\
publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"\
sku\": \"10\",\r\n \"version\": \"latest\",\r\n \"exactVersion\"\
- : \"0.20230802.1460\"\r\n },\r\n \"osDisk\": {\r\n \"osType\"\
- : \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_14597dffd29a4b95bfebf4bcee256760\"\
+ : \"0.20240430.1733\"\r\n },\r\n \"osDisk\": {\r\n \"osType\"\
+ : \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_18bba0551f454fe9b38eadc8c2688a75\"\
,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\
,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_14597dffd29a4b95bfebf4bcee256760\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_18bba0551f454fe9b38eadc8c2688a75\"\
\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\
: []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\"\
,\r\n \"adminUsername\": \"debian\",\r\n \"linuxConfiguration\"\
@@ -1720,17 +2004,17 @@ interactions:
: [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\
,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"\
Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \
- \ \"time\": \"2023-12-06T08:41:26+00:00\"\r\n }\r\n \
+ \ \"time\": \"2025-02-11T04:24:12+00:00\"\r\n }\r\n \
\ ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\":\
- \ [\r\n {\r\n \"name\": \"vm1_OsDisk_1_14597dffd29a4b95bfebf4bcee256760\"\
+ \ [\r\n {\r\n \"name\": \"vm1_OsDisk_1_18bba0551f454fe9b38eadc8c2688a75\"\
,\r\n \"statuses\": [\r\n {\r\n \"code\"\
: \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\
\n \"displayStatus\": \"Provisioning succeeded\",\r\n \
- \ \"time\": \"2023-12-06T08:40:53.1672982+00:00\"\r\n }\r\
+ \ \"time\": \"2025-02-11T04:23:37.6591355+00:00\"\r\n }\r\
\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\"\
,\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\
,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\
- \ succeeded\",\r\n \"time\": \"2023-12-06T08:41:18.8862396+00:00\"\
+ \ succeeded\",\r\n \"time\": \"2025-02-11T04:24:05.7533944+00:00\"\
\r\n },\r\n {\r\n \"code\": \"PowerState/running\"\
,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\
\r\n }\r\n ]\r\n }\r\n }\r\n}"
@@ -1742,7 +2026,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:41:42 GMT
+ - Tue, 11 Feb 2025 04:24:20 GMT
expires:
- '-1'
pragma:
@@ -1753,10 +2037,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGetSubscriptionMaximum;23986,Microsoft.Compute/LowCostGetResource;32
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;33
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 4F8404A1EB3F4C5C94BF61CF2605E70F Ref B: TYO201100117049 Ref C: 2023-12-06T08:41:42Z'
+ - 'Ref A: 1E33DFB1A88B401CA9DB2AC61AEE94CA Ref B: SEL221051504019 Ref C: 2025-02-11T04:24:20Z'
status:
code: 200
message: ''
@@ -1774,46 +2062,23 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --nsg-rule
User-Agent:
- - AZURECLI/2.55.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2018-11-01
response:
body:
- string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- ,\r\n \"etag\": \"W/\\\"fd13c4bb-6dd5-4afa-b4e5-82006e6cd462\\\"\",\r\n \
- \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"1c541787-a17c-4f73-9efe-1bf20c676a74\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\
- ,\r\n \"etag\": \"W/\\\"fd13c4bb-6dd5-4afa-b4e5-82006e6cd462\\\"\"\
- ,\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\
- \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"\
- \r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
- : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\
- \ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\
- internalDomainNameSuffix\": \"35jkuj4jmizubksf35xczy0fsg.dx.internal.cloudapp.net\"\
- \r\n },\r\n \"macAddress\": \"00-22-48-06-B6-DA\",\r\n \"enableIPForwarding\"\
- : false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\
- \r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1\"\
- \r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\
- \n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\"\
- : \"westus\"\r\n}"
+ string: '{"name":"vm1VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","etag":"W/\"26964e60-8606-4697-bbac-9f6697079e41\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"4b52c853-7bb5-4868-816c-ada8eb66c4ac","ipConfigurations":[{"name":"ipconfigvm1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1","etag":"W/\"26964e60-8606-4697-bbac-9f6697079e41\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.6","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"qp5b3m1qqqtu5cqfsksinsbb4e.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-32-30-FE","enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"hostedWorkloads":[],"tapConfigurations":[]},"type":"Microsoft.Network/networkInterfaces","location":"westus"}'
headers:
cache-control:
- no-cache
content-length:
- - '2293'
+ - '1880'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:41:42 GMT
+ - Tue, 11 Feb 2025 04:24:21 GMT
etag:
- - W/"fd13c4bb-6dd5-4afa-b4e5-82006e6cd462"
+ - W/"26964e60-8606-4697-bbac-9f6697079e41"
expires:
- '-1'
pragma:
@@ -1825,9 +2090,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 7a92b222-792e-4360-921a-d2de1749ac53
+ - 91053836-9011-4eab-ab74-531698fd6d29
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: ADAD72B738274F32A556A5A3F9FA7D44 Ref B: TYO201100116017 Ref C: 2023-12-06T08:41:43Z'
+ - 'Ref A: 385FC6D4CD804C4AB72E9A5BAE337EC3 Ref B: SEL221051803033 Ref C: 2025-02-11T04:24:21Z'
status:
code: 200
message: OK
@@ -1845,32 +2112,23 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --nsg-rule
User-Agent:
- - AZURECLI/2.55.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2018-11-01
response:
body:
- string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\
- ,\r\n \"etag\": \"W/\\\"c79e9b8b-ce49-4832-8b37-e55d901fe125\\\"\",\r\n \
- \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\
- \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d0d3af7d-4693-4a12-b84a-d4ce2e574844\"\
- ,\r\n \"ipAddress\": \"104.42.182.78\",\r\n \"publicIPAddressVersion\"\
- : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\"\
- : 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\
- \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\
- \n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}"
+ string: '{"name":"vm1PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","etag":"W/\"bdf69b4e-b6ba-42e2-a3d8-6e1535aaf06b\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"82b98075-f05c-4ac0-824e-dde85a972075","ipAddress":"40.125.45.179","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"}}'
headers:
cache-control:
- no-cache
content-length:
- - '901'
+ - '773'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:41:43 GMT
+ - Tue, 11 Feb 2025 04:24:21 GMT
etag:
- - W/"c79e9b8b-ce49-4832-8b37-e55d901fe125"
+ - W/"bdf69b4e-b6ba-42e2-a3d8-6e1535aaf06b"
expires:
- '-1'
pragma:
@@ -1882,9 +2140,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 9ba238ef-7b89-45b5-99ac-e58a48d8cef4
+ - 760e74dc-c57b-4f4d-a9ff-fd86e1c57496
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 32C097ADA3C742159D1731640D08A08A Ref B: TYO201100113025 Ref C: 2023-12-06T08:41:44Z'
+ - 'Ref A: DB91997592A34EE6A05E9FCF9ED864E4 Ref B: SEL221051801029 Ref C: 2025-02-11T04:24:22Z'
status:
code: 200
message: OK
@@ -1902,7 +2162,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2020-06-01
response:
@@ -1911,15 +2171,15 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"0a3e1daa-0d4a-4d46-ac08-ab3ae5bb427a\"\
+ : \"Succeeded\",\r\n \"vmId\": \"a06c0e7c-9413-49f2-b63d-d58cd2b23b1b\"\
,\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"\
publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"\
sku\": \"10\",\r\n \"version\": \"latest\",\r\n \"exactVersion\"\
- : \"0.20230802.1460\"\r\n },\r\n \"osDisk\": {\r\n \"osType\"\
- : \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_14597dffd29a4b95bfebf4bcee256760\"\
+ : \"0.20240430.1733\"\r\n },\r\n \"osDisk\": {\r\n \"osType\"\
+ : \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_18bba0551f454fe9b38eadc8c2688a75\"\
,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\
,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_14597dffd29a4b95bfebf4bcee256760\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_18bba0551f454fe9b38eadc8c2688a75\"\
\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\
: []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\"\
,\r\n \"adminUsername\": \"debian\",\r\n \"linuxConfiguration\"\
@@ -1942,7 +2202,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:41:44 GMT
+ - Tue, 11 Feb 2025 04:24:22 GMT
expires:
- '-1'
pragma:
@@ -1953,10 +2213,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGetSubscriptionMaximum;23985,Microsoft.Compute/LowCostGetResource;31
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;32
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: E796BCBDEB9D40B3BEF70AFB9D9D893A Ref B: TYO201100115019 Ref C: 2023-12-06T08:41:44Z'
+ - 'Ref A: 2CCE8AA79A2248FC854100DDBC5567FB Ref B: SEL221051801029 Ref C: 2025-02-11T04:24:23Z'
status:
code: 200
message: ''
@@ -1976,7 +2240,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.55.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1/deallocate?api-version=2020-06-01
response:
@@ -1986,17 +2250,17 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/385b8f04-159c-46b6-9aac-24d7d2e356cc?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638374489062464180&c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M&s=IL5LfUpsrjO5L_kdz4hmGVJ-hcZavlSfCH4voBuGL-LUpecKWadCARCnG6-QYYbCArJG17lfNnIildsDOtdvc-gyGhHptpsRfsLqxCidrldpYnVeDsD186QFjRuZzmUpMk5b9fzIIKJZIUy45UuoEmBjmgOisMjJmXjAICACruG_YwwaelJmemldpcaJLTqZcFLKcag0byejxCSGMluNCgGWmxcTCAOEPYuQb1CTrxB4Q3hFmUWT-TCe4gvrspfDlxDQok-A3qoVNG9AO9wJAmA4gpyBxoRlNv69MrxWz8beDQq8F0cgxcBiu-ufhZqvP-2yAYPZAwF_rkuFHkEHkQ&h=2BAJPZ16syKoxmrOSegiHioTjzZWDQB-B0iqAC9vbQU
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c8e6c70d-46a6-443f-918e-a067a085edba?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638748446654743574&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=e1YfHWjUG7NcKRkeScIlp-MtQnQ5UrH2tuNCLigfF36t6ZdCshMuhkHy_0lVdKUly9Lr1VzegtKH2MPR5ZT17Ip9WymwNwA2iB_bBenPagi55tmrQsTDKNnYfmRlhQoLZ6AHzn5djmROeO_h883Y-QMU6NHzAW9fc2usE_smxVRlGy1xCHI538GSasSRpZhmOd1hwpTdjPI77dJjNyMVlYHu1pfNe26OHR9F0ewmuInGE1G4N_F3MXKq5GKrTmTk2Kz6GxMYVz76683y8K3i40mAcNDKEzTDuXgO5fVTSq3pYAi9T7ubJyCPClVvuRNs5-wBI6dWt8y-2iovLW_AKA&h=gzvLzt0_DmQT75ReXl_0qcXPWxMpTzCIDK-rVgJ6BuU
cache-control:
- no-cache
content-length:
- '0'
date:
- - Wed, 06 Dec 2023 08:41:45 GMT
+ - Tue, 11 Feb 2025 04:24:24 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/385b8f04-159c-46b6-9aac-24d7d2e356cc?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2020-06-01&t=638374489062620446&c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M&s=JN572CS8zU7qYiZam3YlgU2vIUm-euobLthg8kWB1DPC8Q71NHszkkibvWg65cnB-qL_cBxRMJb4WXQoMqdLJ2C2kcbpdVRWROFpSUzeP_VRqFX2Eu3J-DvwfOn_I5Xw0bZqHxNsXfvaSRGhNMqOsXAjAq9AXkhvlPgXTAh-h0oLFUMLMfxOH0a578s5JK4Pcszi6DspVHTn9tR7gvustBsUY_aVNvDBHScGqqGRJxfIJQy9w7BqplO9FVq_6WHTcxu6ZtFM6IZGOEI7Rfxq6c4U3F3-hbiy4dU0ubBZLmfOpT-xqjZ-csimMliC-OZ4HPY6PGT09XvBs1xEgaeb1A&h=xuHZJyRYRv33GgG9ubGe5TZTbFozkvDGnhJ6ReBIsbM
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c8e6c70d-46a6-443f-918e-a067a085edba?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2020-06-01&t=638748446654899553&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=hUYGblpK2SniZ1zMdBVqrhggmY8ajIj4f_umUiXgWbBvLh5cHYmZLgKZ3oIUHA1Gut_pnO8FfniAhyZim_FMUjyobh9DsYY4ZFZlpqegJajhy7qnwYMn_ee2xy8T8UcP7nzRAklqwYsg7ZNFPly_ASCwweiAZ1xHUUdezs937WOWiVKxEdGfmwD8pExJIBOL4IngU4Rys4UnFg1IqOxOZm5O2wWVtwzHpL-TtT9LyoehGmcLsSyJZlFSvm6QDpYZS4JlLbGOkMluezq-7zMYq6lcnto9yKql4rGTBndwQXhZp7rO4ywR6M0cbOOkJZlVMxvr3en9nSgtJOnlGmnKeA&h=0CDpPqC06xwOqrJs_J_W-abeEGR7Ye9-fUhyRLk9S-M
pragma:
- no-cache
strict-transport-security:
@@ -2005,12 +2269,16 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/DeleteVMSubscriptionMaximum;1499,Microsoft.Compute/DeleteVMResource;11
+ x-ms-ratelimit-remaining-subscription-global-writes:
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '199'
x-msedge-ref:
- - 'Ref A: 7C5C4BB9C9CF4F789502FC032EC4BA78 Ref B: TYO201100113031 Ref C: 2023-12-06T08:41:45Z'
+ - 'Ref A: 5A5509195AEE4751A2AF370EFD5ED852 Ref B: SEL221051804037 Ref C: 2025-02-11T04:24:24Z'
status:
code: 202
message: ''
@@ -2028,13 +2296,13 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.55.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/385b8f04-159c-46b6-9aac-24d7d2e356cc?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638374489062464180&c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M&s=IL5LfUpsrjO5L_kdz4hmGVJ-hcZavlSfCH4voBuGL-LUpecKWadCARCnG6-QYYbCArJG17lfNnIildsDOtdvc-gyGhHptpsRfsLqxCidrldpYnVeDsD186QFjRuZzmUpMk5b9fzIIKJZIUy45UuoEmBjmgOisMjJmXjAICACruG_YwwaelJmemldpcaJLTqZcFLKcag0byejxCSGMluNCgGWmxcTCAOEPYuQb1CTrxB4Q3hFmUWT-TCe4gvrspfDlxDQok-A3qoVNG9AO9wJAmA4gpyBxoRlNv69MrxWz8beDQq8F0cgxcBiu-ufhZqvP-2yAYPZAwF_rkuFHkEHkQ&h=2BAJPZ16syKoxmrOSegiHioTjzZWDQB-B0iqAC9vbQU
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c8e6c70d-46a6-443f-918e-a067a085edba?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638748446654743574&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=e1YfHWjUG7NcKRkeScIlp-MtQnQ5UrH2tuNCLigfF36t6ZdCshMuhkHy_0lVdKUly9Lr1VzegtKH2MPR5ZT17Ip9WymwNwA2iB_bBenPagi55tmrQsTDKNnYfmRlhQoLZ6AHzn5djmROeO_h883Y-QMU6NHzAW9fc2usE_smxVRlGy1xCHI538GSasSRpZhmOd1hwpTdjPI77dJjNyMVlYHu1pfNe26OHR9F0ewmuInGE1G4N_F3MXKq5GKrTmTk2Kz6GxMYVz76683y8K3i40mAcNDKEzTDuXgO5fVTSq3pYAi9T7ubJyCPClVvuRNs5-wBI6dWt8y-2iovLW_AKA&h=gzvLzt0_DmQT75ReXl_0qcXPWxMpTzCIDK-rVgJ6BuU
response:
body:
- string: "{\r\n \"startTime\": \"2023-12-06T08:41:46.1520634+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"385b8f04-159c-46b6-9aac-24d7d2e356cc\"\
+ string: "{\r\n \"startTime\": \"2025-02-11T04:24:25.4256897+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"c8e6c70d-46a6-443f-918e-a067a085edba\"\
\r\n}"
headers:
cache-control:
@@ -2044,7 +2312,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:41:46 GMT
+ - Tue, 11 Feb 2025 04:24:24 GMT
expires:
- '-1'
pragma:
@@ -2055,10 +2323,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14999
+ - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14997
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 182FCB69FD794D42830E83DEA17F5640 Ref B: TYO201100113031 Ref C: 2023-12-06T08:41:46Z'
+ - 'Ref A: 8DC113D6397144E0A41299FF84A73B55 Ref B: SEL221051804037 Ref C: 2025-02-11T04:24:25Z'
status:
code: 200
message: ''
@@ -2076,14 +2348,14 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.55.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/385b8f04-159c-46b6-9aac-24d7d2e356cc?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638374489062464180&c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M&s=IL5LfUpsrjO5L_kdz4hmGVJ-hcZavlSfCH4voBuGL-LUpecKWadCARCnG6-QYYbCArJG17lfNnIildsDOtdvc-gyGhHptpsRfsLqxCidrldpYnVeDsD186QFjRuZzmUpMk5b9fzIIKJZIUy45UuoEmBjmgOisMjJmXjAICACruG_YwwaelJmemldpcaJLTqZcFLKcag0byejxCSGMluNCgGWmxcTCAOEPYuQb1CTrxB4Q3hFmUWT-TCe4gvrspfDlxDQok-A3qoVNG9AO9wJAmA4gpyBxoRlNv69MrxWz8beDQq8F0cgxcBiu-ufhZqvP-2yAYPZAwF_rkuFHkEHkQ&h=2BAJPZ16syKoxmrOSegiHioTjzZWDQB-B0iqAC9vbQU
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c8e6c70d-46a6-443f-918e-a067a085edba?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638748446654743574&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=e1YfHWjUG7NcKRkeScIlp-MtQnQ5UrH2tuNCLigfF36t6ZdCshMuhkHy_0lVdKUly9Lr1VzegtKH2MPR5ZT17Ip9WymwNwA2iB_bBenPagi55tmrQsTDKNnYfmRlhQoLZ6AHzn5djmROeO_h883Y-QMU6NHzAW9fc2usE_smxVRlGy1xCHI538GSasSRpZhmOd1hwpTdjPI77dJjNyMVlYHu1pfNe26OHR9F0ewmuInGE1G4N_F3MXKq5GKrTmTk2Kz6GxMYVz76683y8K3i40mAcNDKEzTDuXgO5fVTSq3pYAi9T7ubJyCPClVvuRNs5-wBI6dWt8y-2iovLW_AKA&h=gzvLzt0_DmQT75ReXl_0qcXPWxMpTzCIDK-rVgJ6BuU
response:
body:
- string: "{\r\n \"startTime\": \"2023-12-06T08:41:46.1520634+00:00\",\r\n \"\
- endTime\": \"2023-12-06T08:42:01.4803017+00:00\",\r\n \"status\": \"Succeeded\"\
- ,\r\n \"name\": \"385b8f04-159c-46b6-9aac-24d7d2e356cc\"\r\n}"
+ string: "{\r\n \"startTime\": \"2025-02-11T04:24:25.4256897+00:00\",\r\n \"\
+ endTime\": \"2025-02-11T04:24:43.3635786+00:00\",\r\n \"status\": \"Succeeded\"\
+ ,\r\n \"name\": \"c8e6c70d-46a6-443f-918e-a067a085edba\"\r\n}"
headers:
cache-control:
- no-cache
@@ -2092,7 +2364,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:42:16 GMT
+ - Tue, 11 Feb 2025 04:24:55 GMT
expires:
- '-1'
pragma:
@@ -2103,10 +2375,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14993
+ - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14995
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: E4A54E4434994F25A427D17AA0ECC278 Ref B: TYO201100113031 Ref C: 2023-12-06T08:42:16Z'
+ - 'Ref A: 3269BB20B38B4DC4A6D69BCA9946AB7D Ref B: SEL221051804037 Ref C: 2025-02-11T04:24:55Z'
status:
code: 200
message: ''
@@ -2124,7 +2400,7 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-06-01
response:
@@ -2133,14 +2409,14 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"0a3e1daa-0d4a-4d46-ac08-ab3ae5bb427a\"\
+ : \"Succeeded\",\r\n \"vmId\": \"a06c0e7c-9413-49f2-b63d-d58cd2b23b1b\"\
,\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"\
publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"\
sku\": \"10\",\r\n \"version\": \"latest\",\r\n \"exactVersion\"\
- : \"0.20230802.1460\"\r\n },\r\n \"osDisk\": {\r\n \"osType\"\
- : \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_14597dffd29a4b95bfebf4bcee256760\"\
+ : \"0.20240430.1733\"\r\n },\r\n \"osDisk\": {\r\n \"osType\"\
+ : \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_18bba0551f454fe9b38eadc8c2688a75\"\
,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\
- ,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_14597dffd29a4b95bfebf4bcee256760\"\
+ ,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_18bba0551f454fe9b38eadc8c2688a75\"\
\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\
: {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"debian\"\
,\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\
@@ -2154,27 +2430,27 @@ interactions:
\ \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\"\
: {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
}]},\r\n \"instanceView\": {\r\n \"disks\": [\r\n {\r\n \
- \ \"name\": \"vm1_OsDisk_1_14597dffd29a4b95bfebf4bcee256760\",\r\n \
+ \ \"name\": \"vm1_OsDisk_1_18bba0551f454fe9b38eadc8c2688a75\",\r\n \
\ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\
,\r\n \"level\": \"Info\",\r\n \"displayStatus\"\
- : \"Provisioning succeeded\",\r\n \"time\": \"2023-12-06T08:42:01.2928062+00:00\"\
+ : \"Provisioning succeeded\",\r\n \"time\": \"2025-02-11T04:24:43.1448244+00:00\"\
\r\n }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\"\
: \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"\
ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \
\ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\"\
- : \"2023-12-06T08:42:01.308425+00:00\"\r\n },\r\n {\r\n \
- \ \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\"\
+ : \"2025-02-11T04:24:43.2073328+00:00\"\r\n },\r\n {\r\n \
+ \ \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\"\
,\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n \
\ ]\r\n }\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '3493'
+ - '3494'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:42:48 GMT
+ - Tue, 11 Feb 2025 04:25:26 GMT
expires:
- '-1'
pragma:
@@ -2185,18 +2461,22 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;35
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: BEFDBF27C81E46EFAFFA0E682E17F8C0 Ref B: TYO201100113023 Ref C: 2023-12-06T08:42:47Z'
+ - 'Ref A: 1E963219990D4F49A597D8F02B27BD8E Ref B: SEL221051503031 Ref C: 2025-02-11T04:25:27Z'
status:
code: 200
message: ''
- request:
body: '{"location": "westus", "tags": {}, "properties": {"hardwareProfile": {"vmSize":
"Standard_DS1_v2"}, "storageProfile": {"osDisk": {"osType": "Linux", "name":
- "vm1_OsDisk_1_14597dffd29a4b95bfebf4bcee256760", "caching": "ReadWrite", "createOption":
- "FromImage", "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_14597dffd29a4b95bfebf4bcee256760"}},
+ "vm1_OsDisk_1_18bba0551f454fe9b38eadc8c2688a75", "caching": "ReadWrite", "createOption":
+ "FromImage", "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_18bba0551f454fe9b38eadc8c2688a75"}},
"dataDisks": []}, "osProfile": {"computerName": "vm1", "adminUsername": "debian",
"linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys":
[{"path": "/home/debian/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==
@@ -2220,7 +2500,7 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2020-06-01
response:
@@ -2229,15 +2509,15 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"vmId\": \"0a3e1daa-0d4a-4d46-ac08-ab3ae5bb427a\"\
- ,\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_CCI4PDVFMB5VGZCNSTQZIO4P54CQW555KOTOPEULTYICI2UIHECYNSN/providers/Microsoft.Compute/proximityPlacementGroups/ppg1\"\
+ : \"Updating\",\r\n \"vmId\": \"a06c0e7c-9413-49f2-b63d-d58cd2b23b1b\"\
+ ,\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_4V2MRFOPBJFWDRINRBWPH5XYSF6EPXHVFEQZYU7YW6ZCLPJ5VQEGRHV/providers/Microsoft.Compute/proximityPlacementGroups/ppg1\"\
\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n\
\ \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\
\n \"sku\": \"10\",\r\n \"version\": \"latest\",\r\n \
- \ \"exactVersion\": \"0.20230802.1460\"\r\n },\r\n \"osDisk\": {\r\
- \n \"osType\": \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_14597dffd29a4b95bfebf4bcee256760\"\
+ \ \"exactVersion\": \"0.20240430.1733\"\r\n },\r\n \"osDisk\": {\r\
+ \n \"osType\": \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_18bba0551f454fe9b38eadc8c2688a75\"\
,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\
- ,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_14597dffd29a4b95bfebf4bcee256760\"\
+ ,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_18bba0551f454fe9b38eadc8c2688a75\"\
\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\
: {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"debian\"\
,\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\
@@ -2255,7 +2535,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d575e19d-ff21-402a-8ae7-c85430960039?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638374489701635849&c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M&s=jEh6ne6kYwws5Sx-KyT8zejsYonKLbROw0f3R2R9s03AVPmzZ5oBAQmya0F17nHvM0RkBxrv8rkcP1tEZxeJSrmLmySo3kj7knwc2HBOF3CutLyEzlvVj3qEJ7reeHbZo9PnIWUb5hREGtlMVHOWgS1h8ddrPm-VRiGdM946jrtaH7np_1jRUJV1KOvRhLliqhT5WsuKs1ubvlacxAVvFqe7QeWb7wieyfkwtpPci4AUO9PDi5ZWAKk07guoIoib-V_1AjMkPhXTy7-sk5GQkd0Krc0eOamr6PGwNqyceIlLwG8oDM7Hi7ZpBgbTVM6VeyHonnWkc9lFPWTVssTmIA&h=cOSNJXH1woVV_nmXi7w81Zx2bmH2DR9JQxMrCiO-00Y
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/cf678a36-c7e0-42c4-aee5-b43bd4af90c3?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638748447322715597&c=MIIHhzCCBm-gAwIBAgITfAahf2YBi51sACVGogAABqF_ZjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTI3MDkwMDEzWhcNMjUwNzI2MDkwMDEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK_9Fjx9gJVYQgRAHLU0j-VCH80fBm6rpVOsvzj5SDwsaI9xyXtYDEkwEdfK9TTQKB6oTtNgtqVmEFCZL1KyM9L2gcrky6juVqazMbM8YFetedRREdD6fRWosycnI0cqMn6wireRII1dHDoc5-8vd1sbiUvz6au6lLPFyN6AO-jGxf9b9omu8SmgV3chKF-Y0eBL-ZGnebRQVPRpKhppk79NCo_JLXh4V3Oc7i8gNasTzOkiA3B_9sG8xngJ7X2PeVE3WaoBdYvjq9jgfD6L1uXW4rh6HswXzuODIHTD-77J1UDoh6DOqwV_wKJyD7w7u93h3T7UBJzQ1SI9UOfCFkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSwAr6mDGl652Wl580LOyJfziciQDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFmX5DX-YWdy0W1xV9krGpJbbRztEQorQsVO2277VhShjAaVCewHYAtoceQEwzbFwm9yR0B5rIraVS07CFguHNwEywWJyTZ6BC_IgAFHPng3fX_3HDkPwF3YqtbSbc23GjYzdmBSXR_kG2s7ZM9eMuRpoayXBJvfkRXFtFEEKnL4pyiZjVbl-dMrkf8-riqGaKufEScRz2H2azJjzzD90RBxLz2ZnHIF7GVChUTMdVB4P0C8I9KJqfsNyEs8A1Wi_22t8ZFo0BCEfE7xDvCbRaRaLQGr53nydnj2gGTBqSjPyrinSGcOF8gKQ_YJ5xmnYSy9bhJC7dkolxy6GDe2mRY&s=jJVz62T33ArSqRiBzDCTldq_XsJtfNipC0LJZAbYUiwoNYc0qJ_TZEd3S8W9nuLUHQDv0rmVpbkyqSoGCQ1_etl1oqhg9yaxCYc1jmlqp42yZthJ4Muc2sa2ETfE3Q2HyREAVcwZU9h-7V8rvZHACS2JnYOTJ2toa2Q8Ukle_Yi0IXDaIfxE43SDGSF5-k4_Im7LJ_PtSOlVEIs5TJePYgtK3vc68NdzhtfcaNfAfBtTQFYAA94XVr6d6yFOjp96ZsZdIPz5oBydffoA7McKGn1KOliOWAK4SpQ55HRc-LnSkmAUPHqtXdwgo8v2-W1aaa2AQcgkp3IJt2uxKK1ODw&h=7BXmjMENppAB5VKOq6XPNVqWEQfhIWXy1D-IwE2WYQg
cache-control:
- no-cache
content-length:
@@ -2263,7 +2543,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:42:49 GMT
+ - Tue, 11 Feb 2025 04:25:31 GMT
expires:
- '-1'
pragma:
@@ -2274,12 +2554,16 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/PutVMSubscriptionMaximum;1499,Microsoft.Compute/PutVMResource;11
+ x-ms-ratelimit-remaining-subscription-global-writes:
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '1196'
+ - '199'
x-msedge-ref:
- - 'Ref A: 2FEEA4B6425B4866A3BB41AE122596B9 Ref B: TYO201100116007 Ref C: 2023-12-06T08:42:48Z'
+ - 'Ref A: 1D935559F4994C56BCF292076256C646 Ref B: SEL221051802025 Ref C: 2025-02-11T04:25:27Z'
status:
code: 200
message: ''
@@ -2297,23 +2581,23 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d575e19d-ff21-402a-8ae7-c85430960039?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638374489701635849&c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M&s=jEh6ne6kYwws5Sx-KyT8zejsYonKLbROw0f3R2R9s03AVPmzZ5oBAQmya0F17nHvM0RkBxrv8rkcP1tEZxeJSrmLmySo3kj7knwc2HBOF3CutLyEzlvVj3qEJ7reeHbZo9PnIWUb5hREGtlMVHOWgS1h8ddrPm-VRiGdM946jrtaH7np_1jRUJV1KOvRhLliqhT5WsuKs1ubvlacxAVvFqe7QeWb7wieyfkwtpPci4AUO9PDi5ZWAKk07guoIoib-V_1AjMkPhXTy7-sk5GQkd0Krc0eOamr6PGwNqyceIlLwG8oDM7Hi7ZpBgbTVM6VeyHonnWkc9lFPWTVssTmIA&h=cOSNJXH1woVV_nmXi7w81Zx2bmH2DR9JQxMrCiO-00Y
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/cf678a36-c7e0-42c4-aee5-b43bd4af90c3?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638748447322715597&c=MIIHhzCCBm-gAwIBAgITfAahf2YBi51sACVGogAABqF_ZjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTI3MDkwMDEzWhcNMjUwNzI2MDkwMDEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK_9Fjx9gJVYQgRAHLU0j-VCH80fBm6rpVOsvzj5SDwsaI9xyXtYDEkwEdfK9TTQKB6oTtNgtqVmEFCZL1KyM9L2gcrky6juVqazMbM8YFetedRREdD6fRWosycnI0cqMn6wireRII1dHDoc5-8vd1sbiUvz6au6lLPFyN6AO-jGxf9b9omu8SmgV3chKF-Y0eBL-ZGnebRQVPRpKhppk79NCo_JLXh4V3Oc7i8gNasTzOkiA3B_9sG8xngJ7X2PeVE3WaoBdYvjq9jgfD6L1uXW4rh6HswXzuODIHTD-77J1UDoh6DOqwV_wKJyD7w7u93h3T7UBJzQ1SI9UOfCFkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSwAr6mDGl652Wl580LOyJfziciQDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFmX5DX-YWdy0W1xV9krGpJbbRztEQorQsVO2277VhShjAaVCewHYAtoceQEwzbFwm9yR0B5rIraVS07CFguHNwEywWJyTZ6BC_IgAFHPng3fX_3HDkPwF3YqtbSbc23GjYzdmBSXR_kG2s7ZM9eMuRpoayXBJvfkRXFtFEEKnL4pyiZjVbl-dMrkf8-riqGaKufEScRz2H2azJjzzD90RBxLz2ZnHIF7GVChUTMdVB4P0C8I9KJqfsNyEs8A1Wi_22t8ZFo0BCEfE7xDvCbRaRaLQGr53nydnj2gGTBqSjPyrinSGcOF8gKQ_YJ5xmnYSy9bhJC7dkolxy6GDe2mRY&s=jJVz62T33ArSqRiBzDCTldq_XsJtfNipC0LJZAbYUiwoNYc0qJ_TZEd3S8W9nuLUHQDv0rmVpbkyqSoGCQ1_etl1oqhg9yaxCYc1jmlqp42yZthJ4Muc2sa2ETfE3Q2HyREAVcwZU9h-7V8rvZHACS2JnYOTJ2toa2Q8Ukle_Yi0IXDaIfxE43SDGSF5-k4_Im7LJ_PtSOlVEIs5TJePYgtK3vc68NdzhtfcaNfAfBtTQFYAA94XVr6d6yFOjp96ZsZdIPz5oBydffoA7McKGn1KOliOWAK4SpQ55HRc-LnSkmAUPHqtXdwgo8v2-W1aaa2AQcgkp3IJt2uxKK1ODw&h=7BXmjMENppAB5VKOq6XPNVqWEQfhIWXy1D-IwE2WYQg
response:
body:
- string: "{\r\n \"startTime\": \"2023-12-06T08:42:49.7618946+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"d575e19d-ff21-402a-8ae7-c85430960039\"\
+ string: "{\r\n \"startTime\": \"2025-02-11T04:25:31.895871+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"cf678a36-c7e0-42c4-aee5-b43bd4af90c3\"\
\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '134'
+ - '133'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:42:50 GMT
+ - Tue, 11 Feb 2025 04:25:31 GMT
expires:
- '-1'
pragma:
@@ -2324,10 +2608,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14999
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 19761C62412C48D0A32675474BBB59A9 Ref B: TYO201100116007 Ref C: 2023-12-06T08:42:50Z'
+ - 'Ref A: 253908DF1D8C47E391423BF07F4C4783 Ref B: SEL221051802025 Ref C: 2025-02-11T04:25:32Z'
status:
code: 200
message: ''
@@ -2345,23 +2633,23 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d575e19d-ff21-402a-8ae7-c85430960039?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638374489701635849&c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M&s=jEh6ne6kYwws5Sx-KyT8zejsYonKLbROw0f3R2R9s03AVPmzZ5oBAQmya0F17nHvM0RkBxrv8rkcP1tEZxeJSrmLmySo3kj7knwc2HBOF3CutLyEzlvVj3qEJ7reeHbZo9PnIWUb5hREGtlMVHOWgS1h8ddrPm-VRiGdM946jrtaH7np_1jRUJV1KOvRhLliqhT5WsuKs1ubvlacxAVvFqe7QeWb7wieyfkwtpPci4AUO9PDi5ZWAKk07guoIoib-V_1AjMkPhXTy7-sk5GQkd0Krc0eOamr6PGwNqyceIlLwG8oDM7Hi7ZpBgbTVM6VeyHonnWkc9lFPWTVssTmIA&h=cOSNJXH1woVV_nmXi7w81Zx2bmH2DR9JQxMrCiO-00Y
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/cf678a36-c7e0-42c4-aee5-b43bd4af90c3?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638748447322715597&c=MIIHhzCCBm-gAwIBAgITfAahf2YBi51sACVGogAABqF_ZjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTI3MDkwMDEzWhcNMjUwNzI2MDkwMDEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK_9Fjx9gJVYQgRAHLU0j-VCH80fBm6rpVOsvzj5SDwsaI9xyXtYDEkwEdfK9TTQKB6oTtNgtqVmEFCZL1KyM9L2gcrky6juVqazMbM8YFetedRREdD6fRWosycnI0cqMn6wireRII1dHDoc5-8vd1sbiUvz6au6lLPFyN6AO-jGxf9b9omu8SmgV3chKF-Y0eBL-ZGnebRQVPRpKhppk79NCo_JLXh4V3Oc7i8gNasTzOkiA3B_9sG8xngJ7X2PeVE3WaoBdYvjq9jgfD6L1uXW4rh6HswXzuODIHTD-77J1UDoh6DOqwV_wKJyD7w7u93h3T7UBJzQ1SI9UOfCFkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSwAr6mDGl652Wl580LOyJfziciQDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFmX5DX-YWdy0W1xV9krGpJbbRztEQorQsVO2277VhShjAaVCewHYAtoceQEwzbFwm9yR0B5rIraVS07CFguHNwEywWJyTZ6BC_IgAFHPng3fX_3HDkPwF3YqtbSbc23GjYzdmBSXR_kG2s7ZM9eMuRpoayXBJvfkRXFtFEEKnL4pyiZjVbl-dMrkf8-riqGaKufEScRz2H2azJjzzD90RBxLz2ZnHIF7GVChUTMdVB4P0C8I9KJqfsNyEs8A1Wi_22t8ZFo0BCEfE7xDvCbRaRaLQGr53nydnj2gGTBqSjPyrinSGcOF8gKQ_YJ5xmnYSy9bhJC7dkolxy6GDe2mRY&s=jJVz62T33ArSqRiBzDCTldq_XsJtfNipC0LJZAbYUiwoNYc0qJ_TZEd3S8W9nuLUHQDv0rmVpbkyqSoGCQ1_etl1oqhg9yaxCYc1jmlqp42yZthJ4Muc2sa2ETfE3Q2HyREAVcwZU9h-7V8rvZHACS2JnYOTJ2toa2Q8Ukle_Yi0IXDaIfxE43SDGSF5-k4_Im7LJ_PtSOlVEIs5TJePYgtK3vc68NdzhtfcaNfAfBtTQFYAA94XVr6d6yFOjp96ZsZdIPz5oBydffoA7McKGn1KOliOWAK4SpQ55HRc-LnSkmAUPHqtXdwgo8v2-W1aaa2AQcgkp3IJt2uxKK1ODw&h=7BXmjMENppAB5VKOq6XPNVqWEQfhIWXy1D-IwE2WYQg
response:
body:
- string: "{\r\n \"startTime\": \"2023-12-06T08:42:49.7618946+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"d575e19d-ff21-402a-8ae7-c85430960039\"\
+ string: "{\r\n \"startTime\": \"2025-02-11T04:25:31.895871+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"cf678a36-c7e0-42c4-aee5-b43bd4af90c3\"\
\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '134'
+ - '133'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:43:20 GMT
+ - Tue, 11 Feb 2025 04:26:02 GMT
expires:
- '-1'
pragma:
@@ -2372,10 +2660,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14994
+ - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: BB49C3FCBF814BAD923AC20EBC724568 Ref B: TYO201100116007 Ref C: 2023-12-06T08:43:20Z'
+ - 'Ref A: 54A67FB64EC14715A6D185AE438B610B Ref B: SEL221051802025 Ref C: 2025-02-11T04:26:02Z'
status:
code: 200
message: ''
@@ -2393,23 +2685,23 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d575e19d-ff21-402a-8ae7-c85430960039?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638374489701635849&c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M&s=jEh6ne6kYwws5Sx-KyT8zejsYonKLbROw0f3R2R9s03AVPmzZ5oBAQmya0F17nHvM0RkBxrv8rkcP1tEZxeJSrmLmySo3kj7knwc2HBOF3CutLyEzlvVj3qEJ7reeHbZo9PnIWUb5hREGtlMVHOWgS1h8ddrPm-VRiGdM946jrtaH7np_1jRUJV1KOvRhLliqhT5WsuKs1ubvlacxAVvFqe7QeWb7wieyfkwtpPci4AUO9PDi5ZWAKk07guoIoib-V_1AjMkPhXTy7-sk5GQkd0Krc0eOamr6PGwNqyceIlLwG8oDM7Hi7ZpBgbTVM6VeyHonnWkc9lFPWTVssTmIA&h=cOSNJXH1woVV_nmXi7w81Zx2bmH2DR9JQxMrCiO-00Y
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/cf678a36-c7e0-42c4-aee5-b43bd4af90c3?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638748447322715597&c=MIIHhzCCBm-gAwIBAgITfAahf2YBi51sACVGogAABqF_ZjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTI3MDkwMDEzWhcNMjUwNzI2MDkwMDEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK_9Fjx9gJVYQgRAHLU0j-VCH80fBm6rpVOsvzj5SDwsaI9xyXtYDEkwEdfK9TTQKB6oTtNgtqVmEFCZL1KyM9L2gcrky6juVqazMbM8YFetedRREdD6fRWosycnI0cqMn6wireRII1dHDoc5-8vd1sbiUvz6au6lLPFyN6AO-jGxf9b9omu8SmgV3chKF-Y0eBL-ZGnebRQVPRpKhppk79NCo_JLXh4V3Oc7i8gNasTzOkiA3B_9sG8xngJ7X2PeVE3WaoBdYvjq9jgfD6L1uXW4rh6HswXzuODIHTD-77J1UDoh6DOqwV_wKJyD7w7u93h3T7UBJzQ1SI9UOfCFkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSwAr6mDGl652Wl580LOyJfziciQDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFmX5DX-YWdy0W1xV9krGpJbbRztEQorQsVO2277VhShjAaVCewHYAtoceQEwzbFwm9yR0B5rIraVS07CFguHNwEywWJyTZ6BC_IgAFHPng3fX_3HDkPwF3YqtbSbc23GjYzdmBSXR_kG2s7ZM9eMuRpoayXBJvfkRXFtFEEKnL4pyiZjVbl-dMrkf8-riqGaKufEScRz2H2azJjzzD90RBxLz2ZnHIF7GVChUTMdVB4P0C8I9KJqfsNyEs8A1Wi_22t8ZFo0BCEfE7xDvCbRaRaLQGr53nydnj2gGTBqSjPyrinSGcOF8gKQ_YJ5xmnYSy9bhJC7dkolxy6GDe2mRY&s=jJVz62T33ArSqRiBzDCTldq_XsJtfNipC0LJZAbYUiwoNYc0qJ_TZEd3S8W9nuLUHQDv0rmVpbkyqSoGCQ1_etl1oqhg9yaxCYc1jmlqp42yZthJ4Muc2sa2ETfE3Q2HyREAVcwZU9h-7V8rvZHACS2JnYOTJ2toa2Q8Ukle_Yi0IXDaIfxE43SDGSF5-k4_Im7LJ_PtSOlVEIs5TJePYgtK3vc68NdzhtfcaNfAfBtTQFYAA94XVr6d6yFOjp96ZsZdIPz5oBydffoA7McKGn1KOliOWAK4SpQ55HRc-LnSkmAUPHqtXdwgo8v2-W1aaa2AQcgkp3IJt2uxKK1ODw&h=7BXmjMENppAB5VKOq6XPNVqWEQfhIWXy1D-IwE2WYQg
response:
body:
- string: "{\r\n \"startTime\": \"2023-12-06T08:42:49.7618946+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"d575e19d-ff21-402a-8ae7-c85430960039\"\
+ string: "{\r\n \"startTime\": \"2025-02-11T04:25:31.895871+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"cf678a36-c7e0-42c4-aee5-b43bd4af90c3\"\
\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '134'
+ - '133'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:43:50 GMT
+ - Tue, 11 Feb 2025 04:26:33 GMT
expires:
- '-1'
pragma:
@@ -2420,10 +2712,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14999
+ - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: FD264B284AE84CBA90C2ABC70030B6DD Ref B: TYO201100116007 Ref C: 2023-12-06T08:43:50Z'
+ - 'Ref A: F9EEF5542F574CA28683C8A35FB460BD Ref B: SEL221051802025 Ref C: 2025-02-11T04:26:33Z'
status:
code: 200
message: ''
@@ -2441,23 +2737,23 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d575e19d-ff21-402a-8ae7-c85430960039?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638374489701635849&c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M&s=jEh6ne6kYwws5Sx-KyT8zejsYonKLbROw0f3R2R9s03AVPmzZ5oBAQmya0F17nHvM0RkBxrv8rkcP1tEZxeJSrmLmySo3kj7knwc2HBOF3CutLyEzlvVj3qEJ7reeHbZo9PnIWUb5hREGtlMVHOWgS1h8ddrPm-VRiGdM946jrtaH7np_1jRUJV1KOvRhLliqhT5WsuKs1ubvlacxAVvFqe7QeWb7wieyfkwtpPci4AUO9PDi5ZWAKk07guoIoib-V_1AjMkPhXTy7-sk5GQkd0Krc0eOamr6PGwNqyceIlLwG8oDM7Hi7ZpBgbTVM6VeyHonnWkc9lFPWTVssTmIA&h=cOSNJXH1woVV_nmXi7w81Zx2bmH2DR9JQxMrCiO-00Y
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/cf678a36-c7e0-42c4-aee5-b43bd4af90c3?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638748447322715597&c=MIIHhzCCBm-gAwIBAgITfAahf2YBi51sACVGogAABqF_ZjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTI3MDkwMDEzWhcNMjUwNzI2MDkwMDEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK_9Fjx9gJVYQgRAHLU0j-VCH80fBm6rpVOsvzj5SDwsaI9xyXtYDEkwEdfK9TTQKB6oTtNgtqVmEFCZL1KyM9L2gcrky6juVqazMbM8YFetedRREdD6fRWosycnI0cqMn6wireRII1dHDoc5-8vd1sbiUvz6au6lLPFyN6AO-jGxf9b9omu8SmgV3chKF-Y0eBL-ZGnebRQVPRpKhppk79NCo_JLXh4V3Oc7i8gNasTzOkiA3B_9sG8xngJ7X2PeVE3WaoBdYvjq9jgfD6L1uXW4rh6HswXzuODIHTD-77J1UDoh6DOqwV_wKJyD7w7u93h3T7UBJzQ1SI9UOfCFkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSwAr6mDGl652Wl580LOyJfziciQDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFmX5DX-YWdy0W1xV9krGpJbbRztEQorQsVO2277VhShjAaVCewHYAtoceQEwzbFwm9yR0B5rIraVS07CFguHNwEywWJyTZ6BC_IgAFHPng3fX_3HDkPwF3YqtbSbc23GjYzdmBSXR_kG2s7ZM9eMuRpoayXBJvfkRXFtFEEKnL4pyiZjVbl-dMrkf8-riqGaKufEScRz2H2azJjzzD90RBxLz2ZnHIF7GVChUTMdVB4P0C8I9KJqfsNyEs8A1Wi_22t8ZFo0BCEfE7xDvCbRaRaLQGr53nydnj2gGTBqSjPyrinSGcOF8gKQ_YJ5xmnYSy9bhJC7dkolxy6GDe2mRY&s=jJVz62T33ArSqRiBzDCTldq_XsJtfNipC0LJZAbYUiwoNYc0qJ_TZEd3S8W9nuLUHQDv0rmVpbkyqSoGCQ1_etl1oqhg9yaxCYc1jmlqp42yZthJ4Muc2sa2ETfE3Q2HyREAVcwZU9h-7V8rvZHACS2JnYOTJ2toa2Q8Ukle_Yi0IXDaIfxE43SDGSF5-k4_Im7LJ_PtSOlVEIs5TJePYgtK3vc68NdzhtfcaNfAfBtTQFYAA94XVr6d6yFOjp96ZsZdIPz5oBydffoA7McKGn1KOliOWAK4SpQ55HRc-LnSkmAUPHqtXdwgo8v2-W1aaa2AQcgkp3IJt2uxKK1ODw&h=7BXmjMENppAB5VKOq6XPNVqWEQfhIWXy1D-IwE2WYQg
response:
body:
- string: "{\r\n \"startTime\": \"2023-12-06T08:42:49.7618946+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"d575e19d-ff21-402a-8ae7-c85430960039\"\
+ string: "{\r\n \"startTime\": \"2025-02-11T04:25:31.895871+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"cf678a36-c7e0-42c4-aee5-b43bd4af90c3\"\
\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '134'
+ - '133'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:44:21 GMT
+ - Tue, 11 Feb 2025 04:27:04 GMT
expires:
- '-1'
pragma:
@@ -2468,10 +2764,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14995
+ - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 83D75E332B8C4912AB5B2BAF7A235D69 Ref B: TYO201100116007 Ref C: 2023-12-06T08:44:21Z'
+ - 'Ref A: 9A96C619E0F446DBA55D5954B6556CBE Ref B: SEL221051802025 Ref C: 2025-02-11T04:27:03Z'
status:
code: 200
message: ''
@@ -2489,23 +2789,23 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d575e19d-ff21-402a-8ae7-c85430960039?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638374489701635849&c=MIIHHjCCBgagAwIBAgITfwI8YE7TFpH4swTJAgAEAjxgTjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjMxMTAxMTI0ODMyWhcNMjQxMDI2MTI0ODMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOfk7s1AnKyUqxJR1tGB1o-bd08yXoGVmNHQbpQb9IWlVS7htLxnfaUT083PrTqMEBOB9OS4hyPlFX-ApR1pomKdOD1y0gioSkZG_vgzN2wtFSBJWYWnrCl3xq-Tt9kIsLmZ7FZ-JBOTPKr8rSmKzm4L0NIsVf6UNGZOPdsZpFYEXOeyjshEO6PpPevESOM8rWMDozQTl1HzkC0gPrg5DGhYsJJe5HDWO8h7FZD5HFOCbb225KnGWZppoK08q2QpTgIP8P7CvjQnoGz2CnVSlOOMvuZXjhUTObsuZWO8XdgF04CkgZhq94b4Ej__vi4D1mZ2x9zRlrEMA1MEIfV5sN0CAwEAAaOCBAswggQHMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBRQX-Vd5gCv8ZxGaXD2PmaqqUHtdjAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGraIc9hsqUGKcUfGRNlRfK3ussZT-LVHk7wo_N16Hnjq6O3kEOh1mdMNH-uYhMOeqXAg8ua2Co_Ryny1cSbWYBExXVxH2mDnGrRA0cOMEZVd7HGLhG7AvGMFDaxPDge9P_W4kaoMoN3Q3UcKwfZ3H94NyavU0Pk8lqY294YOkd-IgerbhZiIsIR1xE4QglniwVZCNl85WS-QtiJ2urgjIQ6mIdfAQb1mUbHPMh8i3z_av1Wjp5eOUm3MIA7j9kOWVnCEWM_wzDNrLBl-o3cRuUEdVMzmghLEyrN6p0svczMmPBFkSXArQzjyJpTQfM7UHrhAv7N0cUingZ7xJY8z_M&s=jEh6ne6kYwws5Sx-KyT8zejsYonKLbROw0f3R2R9s03AVPmzZ5oBAQmya0F17nHvM0RkBxrv8rkcP1tEZxeJSrmLmySo3kj7knwc2HBOF3CutLyEzlvVj3qEJ7reeHbZo9PnIWUb5hREGtlMVHOWgS1h8ddrPm-VRiGdM946jrtaH7np_1jRUJV1KOvRhLliqhT5WsuKs1ubvlacxAVvFqe7QeWb7wieyfkwtpPci4AUO9PDi5ZWAKk07guoIoib-V_1AjMkPhXTy7-sk5GQkd0Krc0eOamr6PGwNqyceIlLwG8oDM7Hi7ZpBgbTVM6VeyHonnWkc9lFPWTVssTmIA&h=cOSNJXH1woVV_nmXi7w81Zx2bmH2DR9JQxMrCiO-00Y
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/cf678a36-c7e0-42c4-aee5-b43bd4af90c3?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2020-06-01&t=638748447322715597&c=MIIHhzCCBm-gAwIBAgITfAahf2YBi51sACVGogAABqF_ZjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwMTI3MDkwMDEzWhcNMjUwNzI2MDkwMDEzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK_9Fjx9gJVYQgRAHLU0j-VCH80fBm6rpVOsvzj5SDwsaI9xyXtYDEkwEdfK9TTQKB6oTtNgtqVmEFCZL1KyM9L2gcrky6juVqazMbM8YFetedRREdD6fRWosycnI0cqMn6wireRII1dHDoc5-8vd1sbiUvz6au6lLPFyN6AO-jGxf9b9omu8SmgV3chKF-Y0eBL-ZGnebRQVPRpKhppk79NCo_JLXh4V3Oc7i8gNasTzOkiA3B_9sG8xngJ7X2PeVE3WaoBdYvjq9jgfD6L1uXW4rh6HswXzuODIHTD-77J1UDoh6DOqwV_wKJyD7w7u93h3T7UBJzQ1SI9UOfCFkUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSwAr6mDGl652Wl580LOyJfziciQDAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFmX5DX-YWdy0W1xV9krGpJbbRztEQorQsVO2277VhShjAaVCewHYAtoceQEwzbFwm9yR0B5rIraVS07CFguHNwEywWJyTZ6BC_IgAFHPng3fX_3HDkPwF3YqtbSbc23GjYzdmBSXR_kG2s7ZM9eMuRpoayXBJvfkRXFtFEEKnL4pyiZjVbl-dMrkf8-riqGaKufEScRz2H2azJjzzD90RBxLz2ZnHIF7GVChUTMdVB4P0C8I9KJqfsNyEs8A1Wi_22t8ZFo0BCEfE7xDvCbRaRaLQGr53nydnj2gGTBqSjPyrinSGcOF8gKQ_YJ5xmnYSy9bhJC7dkolxy6GDe2mRY&s=jJVz62T33ArSqRiBzDCTldq_XsJtfNipC0LJZAbYUiwoNYc0qJ_TZEd3S8W9nuLUHQDv0rmVpbkyqSoGCQ1_etl1oqhg9yaxCYc1jmlqp42yZthJ4Muc2sa2ETfE3Q2HyREAVcwZU9h-7V8rvZHACS2JnYOTJ2toa2Q8Ukle_Yi0IXDaIfxE43SDGSF5-k4_Im7LJ_PtSOlVEIs5TJePYgtK3vc68NdzhtfcaNfAfBtTQFYAA94XVr6d6yFOjp96ZsZdIPz5oBydffoA7McKGn1KOliOWAK4SpQ55HRc-LnSkmAUPHqtXdwgo8v2-W1aaa2AQcgkp3IJt2uxKK1ODw&h=7BXmjMENppAB5VKOq6XPNVqWEQfhIWXy1D-IwE2WYQg
response:
body:
- string: "{\r\n \"startTime\": \"2023-12-06T08:42:49.7618946+00:00\",\r\n \"\
- endTime\": \"2023-12-06T08:44:50.6533976+00:00\",\r\n \"status\": \"Succeeded\"\
- ,\r\n \"name\": \"d575e19d-ff21-402a-8ae7-c85430960039\"\r\n}"
+ string: "{\r\n \"startTime\": \"2025-02-11T04:25:31.895871+00:00\",\r\n \"\
+ endTime\": \"2025-02-11T04:27:32.6326416+00:00\",\r\n \"status\": \"Succeeded\"\
+ ,\r\n \"name\": \"cf678a36-c7e0-42c4-aee5-b43bd4af90c3\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '184'
+ - '183'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:44:51 GMT
+ - Tue, 11 Feb 2025 04:27:34 GMT
expires:
- '-1'
pragma:
@@ -2516,10 +2816,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14999
+ - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 33AD2AEB335D4388BD1F02BBEA09DA00 Ref B: TYO201100116007 Ref C: 2023-12-06T08:44:51Z'
+ - 'Ref A: 1624BB96E3804D5EA5C7A0B35E532745 Ref B: SEL221051802025 Ref C: 2025-02-11T04:27:34Z'
status:
code: 200
message: ''
@@ -2537,7 +2841,7 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2020-06-01
response:
@@ -2546,15 +2850,15 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"0a3e1daa-0d4a-4d46-ac08-ab3ae5bb427a\"\
- ,\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_CCI4PDVFMB5VGZCNSTQZIO4P54CQW555KOTOPEULTYICI2UIHECYNSN/providers/Microsoft.Compute/proximityPlacementGroups/ppg1\"\
+ : \"Succeeded\",\r\n \"vmId\": \"a06c0e7c-9413-49f2-b63d-d58cd2b23b1b\"\
+ ,\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_4V2MRFOPBJFWDRINRBWPH5XYSF6EPXHVFEQZYU7YW6ZCLPJ5VQEGRHV/providers/Microsoft.Compute/proximityPlacementGroups/ppg1\"\
\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n\
\ \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\
\n \"sku\": \"10\",\r\n \"version\": \"latest\",\r\n \
- \ \"exactVersion\": \"0.20230802.1460\"\r\n },\r\n \"osDisk\": {\r\
- \n \"osType\": \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_14597dffd29a4b95bfebf4bcee256760\"\
+ \ \"exactVersion\": \"0.20240430.1733\"\r\n },\r\n \"osDisk\": {\r\
+ \n \"osType\": \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_18bba0551f454fe9b38eadc8c2688a75\"\
,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\
- ,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_14597dffd29a4b95bfebf4bcee256760\"\
+ ,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_18bba0551f454fe9b38eadc8c2688a75\"\
\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\
: {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"debian\"\
,\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\
@@ -2576,7 +2880,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:44:51 GMT
+ - Tue, 11 Feb 2025 04:27:35 GMT
expires:
- '-1'
pragma:
@@ -2587,10 +2891,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;35
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 41EB7B0E54C54B759FCAC74B2C3E9BE3 Ref B: TYO201100116007 Ref C: 2023-12-06T08:44:51Z'
+ - 'Ref A: 8B69840C3DB043A0AA5B0A5983C52D80 Ref B: SEL221051802025 Ref C: 2025-02-11T04:27:34Z'
status:
code: 200
message: ''
@@ -2608,21 +2916,21 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001?api-version=2019-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001","name":"cli_test_ppg_update_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_update","date":"2023-12-06T08:37:32Z","module":"vm","DateCreated":"2023-12-06T08:39:13Z","Creator":"test@example.com"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001","name":"cli_test_ppg_update_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_update","date":"2025-02-11T04:19:41Z","module":"vm","Creator":"zhuyan@microsoft.com","DateCreated":"2025-02-11T04:19:46Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
content-length:
- - '445'
+ - '439'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:44:51 GMT
+ - Tue, 11 Feb 2025 04:27:35 GMT
expires:
- '-1'
pragma:
@@ -2633,8 +2941,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: FC6DB21A30DC48EB908ECDA78CD2F93A Ref B: TYO201100113027 Ref C: 2023-12-06T08:44:52Z'
+ - 'Ref A: F0ACC0CAD89048E19D772152035A1467 Ref B: SEL221051801035 Ref C: 2025-02-11T04:27:35Z'
status:
code: 200
message: OK
@@ -2661,23 +2971,23 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/av_set_deploy_TNPHNp3OtztvB40PaV5lPjm2lnv0rxpT","name":"av_set_deploy_TNPHNp3OtztvB40PaV5lPjm2lnv0rxpT","type":"Microsoft.Resources/deployments","properties":{"templateHash":"9415985612237730570","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-12-06T08:44:55.9278246Z","duration":"PT0.0001434S","correlationId":"0d6f24bc-b3c5-4096-92c5-f6c16bd127c1","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]}]}],"dependencies":[]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/av_set_deploy_Gbdeh3queyQWqWsjegekLinOvbVdEifH","name":"av_set_deploy_Gbdeh3queyQWqWsjegekLinOvbVdEifH","type":"Microsoft.Resources/deployments","properties":{"templateHash":"9415985612237730570","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-02-11T04:27:40.927859Z","duration":"PT0.0009456S","correlationId":"20721ad8-7d5e-42c3-a25b-1a578e1520cd","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]}]}],"dependencies":[]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/av_set_deploy_TNPHNp3OtztvB40PaV5lPjm2lnv0rxpT/operationStatuses/08584997545912555590?api-version=2019-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/av_set_deploy_Gbdeh3queyQWqWsjegekLinOvbVdEifH/operationStatuses/08584623588276965842?api-version=2019-10-01&t=638748448626334784&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=niAt2zyf8A5INa5ysfrepOfmRrSpqe_8PZfHaH6nl4vnCxf6D2rL-H50e5OZO2ZDpqrvKCKl9NjWhyA9H9Sv1z2z2ywvB3G7LDBenUvjFWRDu5cOnhBmB66c70qvb96-R00j-wlH6hcbQDNkWSIth-viu-8uBIj46qtOl0QwngnV3rEkr6lZjKujDm4W_6yV68zAzafhXyskhJyGQsFEC0qEr_zkcOboCQju7Nn0-dlw9JaD1w22SCT15Ilf-knDs2eQZq_j6GG9LfMiZg_4ObM80ZajBDUxmDNHL9UGKf_G41P2meJYlWOPPLXkPccmhrzZPRiQlInprkjbqDSJVQ&h=rlgnlgt4VdCySf-_IzcyFPc3zJqD-5XNzUBu_e6lSHs
cache-control:
- no-cache
content-length:
- - '675'
+ - '674'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:44:55 GMT
+ - Tue, 11 Feb 2025 04:27:42 GMT
expires:
- '-1'
pragma:
@@ -2688,10 +2998,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-deployment-engine-version:
+ - 1.224.0
+ x-ms-ratelimit-remaining-subscription-global-writes:
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '1190'
+ - '199'
x-msedge-ref:
- - 'Ref A: 68EFC9C32E6A47CA9E3F8C81B9237886 Ref B: TYO201100113025 Ref C: 2023-12-06T08:44:53Z'
+ - 'Ref A: EF6AFFFE877E443FBC222595B96B4E54 Ref B: SEL221051504051 Ref C: 2025-02-11T04:27:36Z'
status:
code: 201
message: Created
@@ -2709,21 +3023,21 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584997545912555590?api-version=2019-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584623588276965842?api-version=2019-10-01&t=638748448626334784&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=niAt2zyf8A5INa5ysfrepOfmRrSpqe_8PZfHaH6nl4vnCxf6D2rL-H50e5OZO2ZDpqrvKCKl9NjWhyA9H9Sv1z2z2ywvB3G7LDBenUvjFWRDu5cOnhBmB66c70qvb96-R00j-wlH6hcbQDNkWSIth-viu-8uBIj46qtOl0QwngnV3rEkr6lZjKujDm4W_6yV68zAzafhXyskhJyGQsFEC0qEr_zkcOboCQju7Nn0-dlw9JaD1w22SCT15Ilf-knDs2eQZq_j6GG9LfMiZg_4ObM80ZajBDUxmDNHL9UGKf_G41P2meJYlWOPPLXkPccmhrzZPRiQlInprkjbqDSJVQ&h=rlgnlgt4VdCySf-_IzcyFPc3zJqD-5XNzUBu_e6lSHs
response:
body:
- string: '{"status":"Running"}'
+ string: '{"status":"Accepted"}'
headers:
cache-control:
- no-cache
content-length:
- - '20'
+ - '21'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:44:56 GMT
+ - Tue, 11 Feb 2025 04:27:42 GMT
expires:
- '-1'
pragma:
@@ -2734,8 +3048,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 1414A12940CC4201BC3B446A0EB44B6F Ref B: TYO201100113025 Ref C: 2023-12-06T08:44:56Z'
+ - 'Ref A: CE8960F7BF194D4C97AF25303747E5BF Ref B: SEL221051504051 Ref C: 2025-02-11T04:27:42Z'
status:
code: 200
message: OK
@@ -2753,9 +3069,9 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584997545912555590?api-version=2019-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584623588276965842?api-version=2019-10-01&t=638748448626334784&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=niAt2zyf8A5INa5ysfrepOfmRrSpqe_8PZfHaH6nl4vnCxf6D2rL-H50e5OZO2ZDpqrvKCKl9NjWhyA9H9Sv1z2z2ywvB3G7LDBenUvjFWRDu5cOnhBmB66c70qvb96-R00j-wlH6hcbQDNkWSIth-viu-8uBIj46qtOl0QwngnV3rEkr6lZjKujDm4W_6yV68zAzafhXyskhJyGQsFEC0qEr_zkcOboCQju7Nn0-dlw9JaD1w22SCT15Ilf-knDs2eQZq_j6GG9LfMiZg_4ObM80ZajBDUxmDNHL9UGKf_G41P2meJYlWOPPLXkPccmhrzZPRiQlInprkjbqDSJVQ&h=rlgnlgt4VdCySf-_IzcyFPc3zJqD-5XNzUBu_e6lSHs
response:
body:
string: '{"status":"Succeeded"}'
@@ -2767,7 +3083,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:45:27 GMT
+ - Tue, 11 Feb 2025 04:28:13 GMT
expires:
- '-1'
pragma:
@@ -2778,8 +3094,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 9D5E1D239BE84667B89193C3C41B38F9 Ref B: TYO201100113025 Ref C: 2023-12-06T08:45:27Z'
+ - 'Ref A: 26AC56FF5F834B72917912E92B5DF1E3 Ref B: SEL221051504051 Ref C: 2025-02-11T04:28:13Z'
status:
code: 200
message: OK
@@ -2797,12 +3115,12 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/av_set_deploy_TNPHNp3OtztvB40PaV5lPjm2lnv0rxpT","name":"av_set_deploy_TNPHNp3OtztvB40PaV5lPjm2lnv0rxpT","type":"Microsoft.Resources/deployments","properties":{"templateHash":"9415985612237730570","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-12-06T08:44:59.0580735Z","duration":"PT3.1303923S","correlationId":"0d6f24bc-b3c5-4096-92c5-f6c16bd127c1","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]}]}],"dependencies":[],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/availabilitySets/avset1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/av_set_deploy_Gbdeh3queyQWqWsjegekLinOvbVdEifH","name":"av_set_deploy_Gbdeh3queyQWqWsjegekLinOvbVdEifH","type":"Microsoft.Resources/deployments","properties":{"templateHash":"9415985612237730570","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-02-11T04:27:48.7703736Z","duration":"PT7.8434602S","correlationId":"20721ad8-7d5e-42c3-a25b-1a578e1520cd","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]}]}],"dependencies":[],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/availabilitySets/avset1"}]}}'
headers:
cache-control:
- no-cache
@@ -2811,7 +3129,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:45:27 GMT
+ - Tue, 11 Feb 2025 04:28:14 GMT
expires:
- '-1'
pragma:
@@ -2822,8 +3140,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 2D708ED0809B4864A5D482A49D54B456 Ref B: TYO201100113025 Ref C: 2023-12-06T08:45:28Z'
+ - 'Ref A: 0142C80AAFC44CDFA2D655AAE83239C4 Ref B: SEL221051504051 Ref C: 2025-02-11T04:28:14Z'
status:
code: 200
message: OK
@@ -2841,7 +3161,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/availabilitySets/avset1?api-version=2020-06-01
response:
@@ -2859,7 +3179,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:45:29 GMT
+ - Tue, 11 Feb 2025 04:28:14 GMT
expires:
- '-1'
pragma:
@@ -2870,10 +3190,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31987
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23998
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 25A920B567BC4322BD22AB2E2DCB06FB Ref B: TYO201100114009 Ref C: 2023-12-06T08:45:29Z'
+ - 'Ref A: 718C837D853C4C90AC6CD1CA8B168BC4 Ref B: SEL221051504053 Ref C: 2025-02-11T04:28:14Z'
status:
code: 200
message: ''
@@ -2891,12 +3215,12 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute?api-version=2019-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"184909ca-69f1-4368-a6a7-c558ee6eb0bd","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"5e5e43d4-54da-4211-86a4-c6e7f3715801","roleDefinitionId":"ffcd6e5b-8772-457d-bb17-89703c03428f"},{"applicationId":"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"},{"applicationId":"372140e0-b3b7-4226-8ef9-d57986796201","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"},{"applicationId":"579d9c9d-4c83-4efc-8124-7eba65ed3356","roleDefinitionId":"8c99c4ce-d744-4597-a2f0-0a0044d67560"},{"applicationId":"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab","roleDefinitionId":"6efa92ca-56b6-40af-a468-5e3d2b5232f0"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"274dd4a6-9687-462d-9bee-4f973b07ce46"},{"applicationId":"184909ca-69f1-4368-a6a7-c558ee6eb0bd","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"5e5e43d4-54da-4211-86a4-c6e7f3715801","roleDefinitionId":"ffcd6e5b-8772-457d-bb17-89703c03428f"},{"applicationId":"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"},{"applicationId":"372140e0-b3b7-4226-8ef9-d57986796201","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"},{"applicationId":"579d9c9d-4c83-4efc-8124-7eba65ed3356","roleDefinitionId":"8c99c4ce-d744-4597-a2f0-0a0044d67560"},{"applicationId":"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab","roleDefinitionId":"6efa92ca-56b6-40af-a468-5e3d2b5232f0"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -2904,7 +3228,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualMachines","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -2913,23 +3238,25 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"virtualMachines/extensions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
@@ -2939,7 +3266,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualMachineScaleSets","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -2948,23 +3276,25 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"virtualMachineScaleSets/extensions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
@@ -2974,7 +3304,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2015-06-15","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2015-06-15","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -2982,7 +3313,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/extensions","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/extensions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -2990,7 +3322,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -2998,7 +3331,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3006,7 +3340,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3014,7 +3349,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/operations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3022,7 +3358,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/vmSizes","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/vmSizes","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3030,7 +3367,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/runCommands","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/runCommands","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3038,7 +3376,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachines","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachines","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3046,7 +3385,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachineScaleSets","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachineScaleSets","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3054,7 +3394,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/publishers","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/publishers","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3062,7 +3403,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"operations","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"operations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3070,7 +3412,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"None"},{"resourceType":"virtualMachines/runCommands","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"None"},{"resourceType":"virtualMachines/runCommands","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3078,7 +3421,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2022-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2023-09-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualMachineScaleSets/applications","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -3087,7 +3431,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"virtualMachines/VMApplications","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"virtualMachines/VMApplications","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3095,8 +3440,9 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2022-03-01","capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"locations/edgeZones","locations":[],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/vmimages","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2023-09-01","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"locations/edgeZones","locations":[],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/vmimages","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3104,7 +3450,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/publishers","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/publishers","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3112,7 +3459,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"restorePointCollections","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"restorePointCollections","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -3120,7 +3468,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"defaultApiVersion":"2022-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"defaultApiVersion":"2023-09-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"restorePointCollections/restorePoints","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -3129,7 +3478,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"capabilities":"None"},{"resourceType":"proximityPlacementGroups","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"capabilities":"None"},{"resourceType":"proximityPlacementGroups","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3137,23 +3487,25 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":[]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":[]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"sshPublicKeys","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -3162,7 +3514,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2022-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2023-09-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"capacityReservationGroups","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -3171,24 +3524,25 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"capacityReservationGroups/capacityReservations","locations":["East
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"capacityReservationGroups/capacityReservations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3196,24 +3550,25 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"virtualMachines/metricDefinitions","locations":["East
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"virtualMachines/metricDefinitions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3221,7 +3576,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Israel
- Central","Poland Central","Italy North","East US 2 EUAP","Central US EUAP"],"apiVersions":["2014-04-01"],"capabilities":"None"},{"resourceType":"locations/spotEvictionRates","locations":["East
+ Central","Poland Central","Italy North","Mexico Central","Spain Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2014-04-01"],"capabilities":"None"},{"resourceType":"locations/spotEvictionRates","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3229,7 +3585,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"locations/spotPriceHistory","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"locations/spotPriceHistory","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3237,7 +3594,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"locations/recommendations","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"locations/recommendations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3245,7 +3603,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"locations/sharedGalleries","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"locations/sharedGalleries","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3253,7 +3612,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/communityGalleries","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/communityGalleries","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3261,27 +3621,28 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"sharedVMImages","locations":["West
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"sharedVMImages","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan
West","Korea Central","France Central","Central US","Australia Central","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2017-10-15-preview"],"defaultApiVersion":"2017-10-15-preview","capabilities":"SupportsTags,
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2017-10-15-preview"],"defaultApiVersion":"2017-10-15-preview","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"sharedVMImages/versions","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan
West","Korea Central","France Central","Central US","Australia Central","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2017-10-15-preview"],"defaultApiVersion":"2017-10-15-preview","capabilities":"SupportsTags,
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2017-10-15-preview"],"defaultApiVersion":"2017-10-15-preview","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/artifactPublishers","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan
West","Korea Central","France Central","Central US","Australia Central","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2017-10-15-preview"],"capabilities":"None"},{"resourceType":"locations/capsoperations","locations":["West
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2017-10-15-preview"],"capabilities":"None"},{"resourceType":"locations/capsoperations","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
@@ -3289,7 +3650,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01","2017-10-15-preview"],"capabilities":"None"},{"resourceType":"galleries","locations":["West
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01","2017-10-15-preview"],"capabilities":"None"},{"resourceType":"galleries","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
@@ -3297,16 +3659,18 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2018-06-01","capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"galleries/images","locations":["West Central
- US","South Central US","East US 2","Southeast Asia","West Europe","West US","East
- US","Canada Central","North Europe","North Central US","Brazil South","UK
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2023-07-03","capabilities":"SystemAssignedResourceIdentity,
+ SupportsTags, SupportsLocation"},{"resourceType":"galleries/images","locations":["West
+ Central US","South Central US","East US 2","Southeast Asia","West Europe","West
+ US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2018-06-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"galleries/images/versions","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -3315,7 +3679,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2018-06-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/galleries","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -3324,7 +3689,9 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2018-06-01","capabilities":"None"},{"resourceType":"galleries/applications","locations":["West
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"None"},{"resourceType":"payloadGroups","locations":["South
+ Central US","West Europe"],"apiVersions":["2024-03-03","2023-07-03"],"capabilities":"None"},{"resourceType":"galleries/applications","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
@@ -3332,7 +3699,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2019-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"galleries/applications/versions","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -3341,7 +3709,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2019-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"disks","locations":["Southeast Asia","East
US 2","Central US","West Europe","East US","North Central US","South Central
US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -3350,23 +3719,25 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"snapshots","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -3375,7 +3746,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/diskoperations","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -3384,7 +3756,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"diskEncryptionSets","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"diskEncryptionSets","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -3392,7 +3765,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01"],"defaultApiVersion":"2022-03-02","capabilities":"SystemAssignedResourceIdentity,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01"],"defaultApiVersion":"2022-03-02","capabilities":"SystemAssignedResourceIdentity,
SupportsTags, SupportsLocation"},{"resourceType":"diskAccesses","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -3401,7 +3775,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01"],"defaultApiVersion":"2022-03-02","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01"],"defaultApiVersion":"2022-03-02","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"restorePointCollections/restorePoints/diskRestorePoints","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -3410,7 +3785,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30"],"defaultApiVersion":"2022-03-02","capabilities":"None"},{"resourceType":"virtualMachineScaleSets/disks","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30"],"defaultApiVersion":"2022-03-02","capabilities":"None"},{"resourceType":"virtualMachineScaleSets/disks","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3418,7 +3794,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"cloudServices","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"cloudServices","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -3426,23 +3803,25 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"cloudServices/roles","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -3451,7 +3830,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/roleInstances","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/roleInstances","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -3459,7 +3839,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/csoperations","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/csoperations","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -3467,7 +3848,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/cloudServiceOsVersions","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/cloudServiceOsVersions","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -3475,7 +3857,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/cloudServiceOsFamilies","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/cloudServiceOsFamilies","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -3483,7 +3866,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/networkInterfaces","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/networkInterfaces","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -3491,7 +3875,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/roleInstances/networkInterfaces","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/roleInstances/networkInterfaces","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -3499,7 +3884,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/publicIPAddresses","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/publicIPAddresses","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -3507,15 +3893,18 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["East
- US","East US 2","West US","Central US","North Central US","South Central US","North
- Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
- East","Australia Southeast","Australia Central","Brazil South","South India","Central
- India","West India","Canada Central","Canada East","West US 2","West Central
- US","UK South","UK West","Korea Central","Korea South","France Central","South
- Africa North","UAE North","Switzerland North","Germany West Central","Norway
- East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"images","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["East
+ US","West US","Central US","North Central US","South Central US","Southeast
+ Asia","Japan East","Japan West","Australia East","Australia Southeast","Australia
+ Central","Brazil South","South India","Central India","West India","Canada
+ Central","Canada East","West US 2","UK West","Korea Central","Korea South","France
+ Central","South Africa North","UAE North","Switzerland North","Germany West
+ Central","Norway East","Jio India West","West US 3","Sweden Central","Qatar
+ Central","Poland Central","Italy North","Israel Central","Spain Central","Mexico
+ Central","New Zealand North","West Central US","East US 2","West Europe","North
+ Europe","UK South","East Asia","East US 2 EUAP","Central US EUAP","East US
+ STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"images","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -3523,24 +3912,53 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/diagnostics","locations":["West
Central US","Southeast Asia","East US 2","East US","South Central US","West
Europe","North Europe","West US 2","UK South","Australia East","South India","Central
India","West India","Korea Central","Korea South","Jio India West","Japan
- West","Japan East","East Asia","Canada Central","Canada East","South Africa
- North","Central US","West US 3","West US","UK West","France Central","UAE
- North","Australia Central","Australia Southeast","Switzerland North","Germany
- West Central","Norway East","North Central US","Brazil South","Sweden Central","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview"],"defaultApiVersion":"2021-06-01-preview","capabilities":"None"},{"resourceType":"locations/diagnosticOperations","locations":["West
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/diagnosticOperations","locations":["West
Central US","Southeast Asia","East US 2","East US","South Central US","West
Europe","North Europe","West US 2","UK South","Australia East","South India","Central
India","West India","Korea Central","Korea South","Jio India West","Japan
- West","Japan East","East Asia","Canada Central","Canada East","South Africa
- North","Central US","West US 3","West US","UK West","France Central","UAE
- North","Australia Central","Australia Southeast","Switzerland North","Germany
- West Central","Norway East","North Central US","Brazil South","Sweden Central","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview"],"defaultApiVersion":"2021-06-01-preview","capabilities":"None"},{"resourceType":"locations/logAnalytics","locations":["East
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/placementScores","locations":["West
+ Central US","Southeast Asia","East US 2","East US","South Central US","West
+ Europe","North Europe","West US 2","UK South","Australia East","South India","Central
+ India","West India","Korea Central","Korea South","Jio India West","Japan
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/placementRecommendations","locations":["West
+ Central US","Southeast Asia","East US 2","East US","South Central US","West
+ Europe","North Europe","West US 2","UK South","Australia East","South India","Central
+ India","West India","Korea Central","Korea South","Jio India West","Japan
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/logAnalytics","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3548,7 +3966,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01"],"capabilities":"None"},{"resourceType":"hostGroups","locations":["Central
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01"],"capabilities":"None"},{"resourceType":"hostGroups","locations":["Central
US","East US 2","West Europe","Southeast Asia","France Central","North Europe","West
US 2","East US","UK South","Japan East","Japan West","East Asia","North Central
US","South Central US","Canada East","Korea Central","Brazil South","UK West","Canada
@@ -3556,24 +3975,25 @@ interactions:
Southeast","Korea South","West India","South Africa North","UAE North","Australia
Central","Switzerland North","Germany West Central","Norway East","Australia
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"hostGroups/hosts","locations":["Central
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"hostGroups/hosts","locations":["Central
US","East US 2","West Europe","Southeast Asia","France Central","North Europe","West
US 2","East US","UK South","Japan East","Japan West","East Asia","North Central
US","South Central US","Canada East","Korea Central","Brazil South","UK West","Canada
@@ -3581,51 +4001,76 @@ interactions:
Southeast","Korea South","West India","South Africa North","UAE North","Australia
Central","Switzerland North","Germany West Central","Norway East","Australia
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"sharedVMExtensions","locations":["East
- US 2 EUAP","Central US EUAP","Southeast Asia","East US 2","Central US","West
- Europe","East US","North Central US","South Central US","West US","North Europe","East
- Asia","Brazil South","West US 2","West Central US","UK West","UK South","Japan
- East","Japan West","Canada Central","Canada East","Central India","South India","Australia
- East","Australia Southeast","Korea Central","Korea South","West India","France
- Central","South Africa North","UAE North","Australia Central","Switzerland
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"sharedVMExtensions","locations":["East
+ US 2 EUAP","Central US EUAP","East US STG","Southeast Asia","East US 2","Central
+ US","West Europe","East US","North Central US","South Central US","West US","North
+ Europe","East Asia","Brazil South","West US 2","West Central US","UK West","UK
+ South","Japan East","Japan West","Canada Central","Canada East","Central India","South
+ India","Australia East","Australia Southeast","Korea Central","Korea South","West
+ India","France Central","South Africa North","UAE North","Australia Central","Switzerland
North","Germany West Central","Norway East","Jio India West","West US 3","Sweden
- Central","Qatar Central","Poland Central","Italy North","Israel Central"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
+ Central","Qatar Central","Poland Central","Italy North","Israel Central","Spain
+ Central","Mexico Central","New Zealand North"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"sharedVMExtensions/versions","locations":["East
- US 2 EUAP","Central US EUAP","Southeast Asia","East US 2","Central US","West
- Europe","East US","North Central US","South Central US","West US","North Europe","East
- Asia","Brazil South","West US 2","West Central US","UK West","UK South","Japan
- East","Japan West","Canada Central","Canada East","Central India","South India","Australia
- East","Australia Southeast","Korea Central","Korea South","West India","France
- Central","South Africa North","UAE North","Australia Central","Switzerland
+ US 2 EUAP","Central US EUAP","East US STG","Southeast Asia","East US 2","Central
+ US","West Europe","East US","North Central US","South Central US","West US","North
+ Europe","East Asia","Brazil South","West US 2","West Central US","UK West","UK
+ South","Japan East","Japan West","Canada Central","Canada East","Central India","South
+ India","Australia East","Australia Southeast","Korea Central","Korea South","West
+ India","France Central","South Africa North","UAE North","Australia Central","Switzerland
North","Germany West Central","Norway East","Jio India West","West US 3","Sweden
- Central","Qatar Central","Poland Central","Italy North","Israel Central"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
+ Central","Qatar Central","Poland Central","Italy North","Israel Central","Spain
+ Central","Mexico Central","New Zealand North"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"galleries/inVMAccessControlProfiles","locations":["East
+ US 2 EUAP","Central US EUAP","East US STG","West Central US","South Central
+ US","East US 2","Southeast Asia","West Europe","West US","East US","Canada
+ Central","North Europe","North Central US","Brazil South","UK West","West
+ India","East Asia","Australia East","Japan East","Korea South","West US 2","Canada
+ East","UK South","Central India","South India","Australia Southeast","Japan
+ West","Korea Central","France Central","Central US","Australia Central","South
+ Africa North","UAE North","Switzerland North","Germany West Central","Norway
+ East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North"],"apiVersions":["2024-03-03"],"defaultApiVersion":"2024-03-03","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"galleries/inVMAccessControlProfiles/versions","locations":["East
+ US 2 EUAP","Central US EUAP","East US STG","West Central US","South Central
+ US","East US 2","Southeast Asia","West Europe","West US","East US","Canada
+ Central","North Europe","North Central US","Brazil South","UK West","West
+ India","East Asia","Australia East","Japan East","Korea South","West US 2","Canada
+ East","UK South","Central India","South India","Australia Southeast","Japan
+ West","Korea Central","France Central","Central US","Australia Central","South
+ Africa North","UAE North","Switzerland North","Germany West Central","Norway
+ East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North"],"apiVersions":["2024-03-03"],"defaultApiVersion":"2024-03-03","capabilities":"SupportsTags,
SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '90590'
+ - '102265'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:45:30 GMT
+ - Tue, 11 Feb 2025 04:28:16 GMT
expires:
- '-1'
pragma:
@@ -3636,8 +4081,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: E7BD602F0953483D81063851618C72F1 Ref B: TYO201100115049 Ref C: 2023-12-06T08:45:30Z'
+ - 'Ref A: 0CE31A1DCD1447038BE4B626EC2C9CF9 Ref B: SEL221051503049 Ref C: 2025-02-11T04:28:15Z'
status:
code: 200
message: OK
@@ -3655,28 +4102,28 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/proximityPlacementGroups/ppg1?api-version=2023-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/proximityPlacementGroups/ppg1?api-version=2024-11-01
response:
body:
string: "{\r\n \"name\": \"ppg1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/proximityPlacementGroups/ppg1\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\",\r\n \"virtualMachines\": [\r\n {\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_CCI4PDVFMB5VGZCNSTQZIO4P54CQW555KOTOPEULTYICI2UIHECYNSN/providers/Microsoft.Compute/virtualMachines/VM1\"\
+ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_4V2MRFOPBJFWDRINRBWPH5XYSF6EPXHVFEQZYU7YW6ZCLPJ5VQEGRHV/providers/Microsoft.Compute/virtualMachines/VM1\"\
\r\n }\r\n ],\r\n \"virtualMachineScaleSets\": [\r\n {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_CCI4PDVFMB5VGZCNSTQZIO4P54CQW555KOTOPEULTYICI2UIHECYNSN/providers/Microsoft.Compute/virtualMachineScaleSets/VMSS1\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_4V2MRFOPBJFWDRINRBWPH5XYSF6EPXHVFEQZYU7YW6ZCLPJ5VQEGRHV/providers/Microsoft.Compute/virtualMachineScaleSets/VMSS1\"\
\r\n }\r\n ],\r\n \"availabilitySets\": []\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '922'
+ - '907'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:45:31 GMT
+ - Tue, 11 Feb 2025 04:28:16 GMT
expires:
- '-1'
pragma:
@@ -3687,10 +4134,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/HighCostGet3Min;139,Microsoft.Compute/HighCostGet30Min;687
+ - Microsoft.Compute/HighCostGetSubscriptionMaximum;899
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3748'
x-msedge-ref:
- - 'Ref A: B255D6BEC2F744DA9298E470AF0060BA Ref B: TYO201100113017 Ref C: 2023-12-06T08:45:31Z'
+ - 'Ref A: 3996874318E64FF2B2BD8006918CD347 Ref B: SEL221051803045 Ref C: 2025-02-11T04:28:16Z'
status:
code: 200
message: ''
@@ -3708,7 +4159,7 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/availabilitySets/avset1?api-version=2020-06-01
response:
@@ -3726,7 +4177,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:45:33 GMT
+ - Tue, 11 Feb 2025 04:28:17 GMT
expires:
- '-1'
pragma:
@@ -3737,10 +4188,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31985
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: D0956B39DD034DC39F7BEDF4079703F0 Ref B: TYO201100117039 Ref C: 2023-12-06T08:45:32Z'
+ - 'Ref A: DC2015BDF09D440D828ECD00F7D71013 Ref B: SEL221051804031 Ref C: 2025-02-11T04:28:17Z'
status:
code: 200
message: ''
@@ -3764,7 +4219,7 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/availabilitySets/avset1?api-version=2020-06-01
response:
@@ -3773,7 +4228,7 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\"\
: \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"platformUpdateDomainCount\"\
: 5,\r\n \"platformFaultDomainCount\": 2,\r\n \"proximityPlacementGroup\"\
- : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_CCI4PDVFMB5VGZCNSTQZIO4P54CQW555KOTOPEULTYICI2UIHECYNSN/providers/Microsoft.Compute/proximityPlacementGroups/ppg1\"\
+ : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_4V2MRFOPBJFWDRINRBWPH5XYSF6EPXHVFEQZYU7YW6ZCLPJ5VQEGRHV/providers/Microsoft.Compute/proximityPlacementGroups/ppg1\"\
\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n}"
headers:
cache-control:
@@ -3783,7 +4238,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:45:34 GMT
+ - Tue, 11 Feb 2025 04:28:17 GMT
expires:
- '-1'
pragma:
@@ -3794,12 +4249,16 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1194
+ - Microsoft.Compute/PutVMSubscriptionMaximum;1498
+ x-ms-ratelimit-remaining-subscription-global-writes:
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '1195'
+ - '199'
x-msedge-ref:
- - 'Ref A: E3B3FA29C22E47ED85A33E5A8B5372FC Ref B: TYO201100117021 Ref C: 2023-12-06T08:45:33Z'
+ - 'Ref A: 1ECB3DD237534B7898B1E1AD1A4F62A2 Ref B: SEL221051803029 Ref C: 2025-02-11T04:28:17Z'
status:
code: 200
message: ''
@@ -3817,30 +4276,30 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - AZURECLI/2.55.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/proximityPlacementGroups/ppg1?api-version=2022-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/proximityPlacementGroups/ppg1?api-version=2020-06-01
response:
body:
string: "{\r\n \"name\": \"ppg1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/proximityPlacementGroups/ppg1\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\",\r\n \"virtualMachines\": [\r\n {\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_CCI4PDVFMB5VGZCNSTQZIO4P54CQW555KOTOPEULTYICI2UIHECYNSN/providers/Microsoft.Compute/virtualMachines/VM1\"\
+ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_4V2MRFOPBJFWDRINRBWPH5XYSF6EPXHVFEQZYU7YW6ZCLPJ5VQEGRHV/providers/Microsoft.Compute/virtualMachines/VM1\"\
\r\n }\r\n ],\r\n \"virtualMachineScaleSets\": [\r\n {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_CCI4PDVFMB5VGZCNSTQZIO4P54CQW555KOTOPEULTYICI2UIHECYNSN/providers/Microsoft.Compute/virtualMachineScaleSets/VMSS1\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_4V2MRFOPBJFWDRINRBWPH5XYSF6EPXHVFEQZYU7YW6ZCLPJ5VQEGRHV/providers/Microsoft.Compute/virtualMachineScaleSets/VMSS1\"\
\r\n }\r\n ],\r\n \"availabilitySets\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_CCI4PDVFMB5VGZCNSTQZIO4P54CQW555KOTOPEULTYICI2UIHECYNSN/providers/Microsoft.Compute/availabilitySets/AVSET1\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_4V2MRFOPBJFWDRINRBWPH5XYSF6EPXHVFEQZYU7YW6ZCLPJ5VQEGRHV/providers/Microsoft.Compute/availabilitySets/AVSET1\"\
\r\n }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1158'
+ - '1143'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:45:34 GMT
+ - Tue, 11 Feb 2025 04:28:19 GMT
expires:
- '-1'
pragma:
@@ -3851,10 +4310,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/HighCostGet3Min;138,Microsoft.Compute/HighCostGet30Min;686
+ - Microsoft.Compute/HighCostGetSubscriptionMaximum;897
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 2E5F337A10C84533A2188AB5F8C13C3D Ref B: TYO201100116049 Ref C: 2023-12-06T08:45:34Z'
+ - 'Ref A: 029CA5BCD64E4668BDF57A0B757FA91B Ref B: SEL221051503045 Ref C: 2025-02-11T04:28:19Z'
status:
code: 200
message: ''
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_ppg_with_related_resources.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_ppg_with_related_resources.yaml
index 052e0cd19a8..2c453d21421 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_ppg_with_related_resources.yaml
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_ppg_with_related_resources.yaml
@@ -13,12 +13,12 @@ interactions:
ParameterSetName:
- -n -t -g
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001?api-version=2019-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001","name":"cli_test_ppg_vm_vmss_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_with_related_resources","date":"2023-12-06T08:31:16Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001","name":"cli_test_ppg_vm_vmss_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_with_related_resources","date":"2025-02-11T05:51:37Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -27,7 +27,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:31:14 GMT
+ - Tue, 11 Feb 2025 05:51:44 GMT
expires:
- '-1'
pragma:
@@ -38,14 +38,15 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 5D9F79CA96F5418FBA47B7F16BD84911 Ref B: TYO201100114049 Ref C: 2023-12-06T08:31:15Z'
+ - 'Ref A: 5FBB152B201045419BC41D032A5FD98E Ref B: SEL221051503025 Ref C: 2025-02-11T05:51:43Z'
status:
code: 200
message: OK
- request:
- body: '{"location": "westus", "tags": {}, "properties": {"proximityPlacementGroupType":
- "Standard"}}'
+ body: '{"location": "westus", "properties": {"proximityPlacementGroupType": "Standard"}}'
headers:
Accept:
- application/json
@@ -56,30 +57,30 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '93'
+ - '81'
Content-Type:
- application/json
ParameterSetName:
- -n -t -g
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg?api-version=2020-06-01
response:
body:
string: "{\r\n \"name\": \"myppg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '358'
+ - '343'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:31:16 GMT
+ - Tue, 11 Feb 2025 05:51:47 GMT
expires:
- '-1'
pragma:
@@ -90,12 +91,16 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/PutDeletePPG3Min;92,Microsoft.Compute/PutDeletePPG30Min;492
+ - Microsoft.Compute/PutDeletePPGSubscriptionMaximum;119
+ x-ms-ratelimit-remaining-subscription-global-writes:
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '1195'
+ - '199'
x-msedge-ref:
- - 'Ref A: 74CAF2BDA04F41E99027ED56E4F0C948 Ref B: TYO201100117017 Ref C: 2023-12-06T08:31:15Z'
+ - 'Ref A: 19BA4353A1AD4392BC13B39E795931CD Ref B: SEL221051503017 Ref C: 2025-02-11T05:51:44Z'
status:
code: 201
message: ''
@@ -113,21 +118,21 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --ppg --nsg-rule
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001?api-version=2019-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001","name":"cli_test_ppg_vm_vmss_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_with_related_resources","date":"2023-12-06T08:31:16Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001","name":"cli_test_ppg_vm_vmss_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_with_related_resources","date":"2025-02-11T05:51:37Z","module":"vm","DateCreated":"2025-02-11T05:51:45Z","Creator":"zhuyan@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
content-length:
- - '387'
+ - '457'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:31:16 GMT
+ - Tue, 11 Feb 2025 05:51:47 GMT
expires:
- '-1'
pragma:
@@ -138,8 +143,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 18114702290047F49BC472387F69CBE2 Ref B: TYO201100116039 Ref C: 2023-12-06T08:31:17Z'
+ - 'Ref A: E79EC278DB2A4ED5A96AEB4FF6C6B00D Ref B: SEL221051805049 Ref C: 2025-02-11T05:51:48Z'
status:
code: 200
message: OK
@@ -157,13 +164,13 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --ppg --nsg-rule
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2020-06-01
response:
body:
- string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20230802.1460\"\
- ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20230802.1460\"\
+ string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240430.1733\"\
+ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\
\r\n }\r\n]"
headers:
cache-control:
@@ -173,7 +180,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:31:17 GMT
+ - Tue, 11 Feb 2025 05:51:48 GMT
expires:
- '-1'
pragma:
@@ -185,9 +192,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43962
+ - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: AF4EB6F258AA4775973DB2BE67DA10ED Ref B: TYO201100115033 Ref C: 2023-12-06T08:31:17Z'
+ - 'Ref A: EA6E0BC1D4FC405EB42B74581A357F4F Ref B: SEL221051803049 Ref C: 2025-02-11T05:51:48Z'
status:
code: 200
message: OK
@@ -205,9 +214,9 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --ppg --nsg-rule
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20230802.1460?api-version=2020-06-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2020-06-01
response:
body:
string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \
@@ -222,7 +231,7 @@ interactions:
,\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\"\
: {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\
\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\"\
- ,\r\n \"name\": \"0.20230802.1460\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20230802.1460\"\
+ ,\r\n \"name\": \"0.20240430.1733\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\
\r\n}"
headers:
cache-control:
@@ -232,7 +241,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:31:18 GMT
+ - Tue, 11 Feb 2025 05:51:49 GMT
expires:
- '-1'
pragma:
@@ -244,9 +253,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73978
+ - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 1074E969FD564C0B924CE67C41AF3614 Ref B: TYO201100113025 Ref C: 2023-12-06T08:31:18Z'
+ - 'Ref A: C8FFEEFAA8E74DA0ABDBABA83119F873 Ref B: SEL221051503017 Ref C: 2025-02-11T05:51:49Z'
status:
code: 200
message: OK
@@ -264,7 +275,7 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --ppg --nsg-rule
User-Agent:
- - AZURECLI/2.55.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-11-01
response:
@@ -278,7 +289,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:31:18 GMT
+ - Tue, 11 Feb 2025 05:51:50 GMT
expires:
- '-1'
pragma:
@@ -289,8 +300,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: C27CAF7D55CF4437BC9B50248C4531A2 Ref B: TYO201100115027 Ref C: 2023-12-06T08:31:19Z'
+ - 'Ref A: BB0F36194439494482689F19316EA188 Ref B: SEL221051801029 Ref C: 2025-02-11T05:51:50Z'
status:
code: 200
message: OK
@@ -308,12 +321,12 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --ppg --nsg-rule
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute?api-version=2019-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"184909ca-69f1-4368-a6a7-c558ee6eb0bd","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"5e5e43d4-54da-4211-86a4-c6e7f3715801","roleDefinitionId":"ffcd6e5b-8772-457d-bb17-89703c03428f"},{"applicationId":"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"},{"applicationId":"372140e0-b3b7-4226-8ef9-d57986796201","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"},{"applicationId":"579d9c9d-4c83-4efc-8124-7eba65ed3356","roleDefinitionId":"8c99c4ce-d744-4597-a2f0-0a0044d67560"},{"applicationId":"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab","roleDefinitionId":"6efa92ca-56b6-40af-a468-5e3d2b5232f0"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"274dd4a6-9687-462d-9bee-4f973b07ce46"},{"applicationId":"184909ca-69f1-4368-a6a7-c558ee6eb0bd","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"5e5e43d4-54da-4211-86a4-c6e7f3715801","roleDefinitionId":"ffcd6e5b-8772-457d-bb17-89703c03428f"},{"applicationId":"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"},{"applicationId":"372140e0-b3b7-4226-8ef9-d57986796201","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"},{"applicationId":"579d9c9d-4c83-4efc-8124-7eba65ed3356","roleDefinitionId":"8c99c4ce-d744-4597-a2f0-0a0044d67560"},{"applicationId":"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab","roleDefinitionId":"6efa92ca-56b6-40af-a468-5e3d2b5232f0"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -321,7 +334,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualMachines","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -330,23 +344,25 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"virtualMachines/extensions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
@@ -356,7 +372,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualMachineScaleSets","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -365,23 +382,25 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"virtualMachineScaleSets/extensions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
@@ -391,7 +410,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2015-06-15","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2015-06-15","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -399,7 +419,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/extensions","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/extensions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -407,7 +428,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -415,7 +437,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -423,7 +446,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -431,7 +455,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/operations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -439,7 +464,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/vmSizes","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/vmSizes","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -447,7 +473,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/runCommands","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/runCommands","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -455,7 +482,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachines","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachines","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -463,7 +491,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachineScaleSets","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachineScaleSets","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -471,7 +500,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/publishers","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/publishers","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -479,7 +509,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"operations","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"operations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -487,7 +518,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"None"},{"resourceType":"virtualMachines/runCommands","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"None"},{"resourceType":"virtualMachines/runCommands","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -495,7 +527,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2022-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2023-09-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualMachineScaleSets/applications","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -504,7 +537,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"virtualMachines/VMApplications","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"virtualMachines/VMApplications","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -512,8 +546,9 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2022-03-01","capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"locations/edgeZones","locations":[],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/vmimages","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2023-09-01","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"locations/edgeZones","locations":[],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/vmimages","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -521,7 +556,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/publishers","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/publishers","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -529,7 +565,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"restorePointCollections","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"restorePointCollections","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -537,7 +574,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"defaultApiVersion":"2022-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"defaultApiVersion":"2023-09-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"restorePointCollections/restorePoints","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -546,7 +584,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"capabilities":"None"},{"resourceType":"proximityPlacementGroups","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"capabilities":"None"},{"resourceType":"proximityPlacementGroups","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -554,23 +593,25 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":[]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":[]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"sshPublicKeys","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -579,7 +620,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2022-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2023-09-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"capacityReservationGroups","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -588,24 +630,25 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"capacityReservationGroups/capacityReservations","locations":["East
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"capacityReservationGroups/capacityReservations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -613,24 +656,25 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"virtualMachines/metricDefinitions","locations":["East
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"virtualMachines/metricDefinitions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -638,7 +682,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Israel
- Central","Poland Central","Italy North","East US 2 EUAP","Central US EUAP"],"apiVersions":["2014-04-01"],"capabilities":"None"},{"resourceType":"locations/spotEvictionRates","locations":["East
+ Central","Poland Central","Italy North","Mexico Central","Spain Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2014-04-01"],"capabilities":"None"},{"resourceType":"locations/spotEvictionRates","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -646,7 +691,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"locations/spotPriceHistory","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"locations/spotPriceHistory","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -654,7 +700,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"locations/recommendations","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"locations/recommendations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -662,7 +709,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"locations/sharedGalleries","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"locations/sharedGalleries","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -670,7 +718,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/communityGalleries","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/communityGalleries","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -678,27 +727,28 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"sharedVMImages","locations":["West
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"sharedVMImages","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan
West","Korea Central","France Central","Central US","Australia Central","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2017-10-15-preview"],"defaultApiVersion":"2017-10-15-preview","capabilities":"SupportsTags,
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2017-10-15-preview"],"defaultApiVersion":"2017-10-15-preview","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"sharedVMImages/versions","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan
West","Korea Central","France Central","Central US","Australia Central","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2017-10-15-preview"],"defaultApiVersion":"2017-10-15-preview","capabilities":"SupportsTags,
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2017-10-15-preview"],"defaultApiVersion":"2017-10-15-preview","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/artifactPublishers","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan
West","Korea Central","France Central","Central US","Australia Central","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2017-10-15-preview"],"capabilities":"None"},{"resourceType":"locations/capsoperations","locations":["West
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2017-10-15-preview"],"capabilities":"None"},{"resourceType":"locations/capsoperations","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
@@ -706,7 +756,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01","2017-10-15-preview"],"capabilities":"None"},{"resourceType":"galleries","locations":["West
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01","2017-10-15-preview"],"capabilities":"None"},{"resourceType":"galleries","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
@@ -714,16 +765,18 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2018-06-01","capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"galleries/images","locations":["West Central
- US","South Central US","East US 2","Southeast Asia","West Europe","West US","East
- US","Canada Central","North Europe","North Central US","Brazil South","UK
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2023-07-03","capabilities":"SystemAssignedResourceIdentity,
+ SupportsTags, SupportsLocation"},{"resourceType":"galleries/images","locations":["West
+ Central US","South Central US","East US 2","Southeast Asia","West Europe","West
+ US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2018-06-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"galleries/images/versions","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -732,7 +785,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2018-06-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/galleries","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -741,7 +795,9 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2018-06-01","capabilities":"None"},{"resourceType":"galleries/applications","locations":["West
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"None"},{"resourceType":"payloadGroups","locations":["South
+ Central US","West Europe"],"apiVersions":["2024-03-03","2023-07-03"],"capabilities":"None"},{"resourceType":"galleries/applications","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
@@ -749,7 +805,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2019-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"galleries/applications/versions","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -758,7 +815,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2019-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"disks","locations":["Southeast Asia","East
US 2","Central US","West Europe","East US","North Central US","South Central
US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -767,23 +825,25 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"snapshots","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -792,7 +852,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/diskoperations","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -801,7 +862,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"diskEncryptionSets","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"diskEncryptionSets","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -809,7 +871,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01"],"defaultApiVersion":"2022-03-02","capabilities":"SystemAssignedResourceIdentity,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01"],"defaultApiVersion":"2022-03-02","capabilities":"SystemAssignedResourceIdentity,
SupportsTags, SupportsLocation"},{"resourceType":"diskAccesses","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -818,7 +881,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01"],"defaultApiVersion":"2022-03-02","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01"],"defaultApiVersion":"2022-03-02","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"restorePointCollections/restorePoints/diskRestorePoints","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -827,7 +891,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30"],"defaultApiVersion":"2022-03-02","capabilities":"None"},{"resourceType":"virtualMachineScaleSets/disks","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30"],"defaultApiVersion":"2022-03-02","capabilities":"None"},{"resourceType":"virtualMachineScaleSets/disks","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -835,7 +900,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"cloudServices","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"cloudServices","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -843,23 +909,25 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"cloudServices/roles","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -868,7 +936,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/roleInstances","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/roleInstances","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -876,7 +945,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/csoperations","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/csoperations","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -884,7 +954,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/cloudServiceOsVersions","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/cloudServiceOsVersions","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -892,7 +963,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/cloudServiceOsFamilies","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/cloudServiceOsFamilies","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -900,7 +972,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/networkInterfaces","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/networkInterfaces","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -908,7 +981,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/roleInstances/networkInterfaces","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/roleInstances/networkInterfaces","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -916,7 +990,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/publicIPAddresses","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/publicIPAddresses","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -924,15 +999,18 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["East
- US","East US 2","West US","Central US","North Central US","South Central US","North
- Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
- East","Australia Southeast","Australia Central","Brazil South","South India","Central
- India","West India","Canada Central","Canada East","West US 2","West Central
- US","UK South","UK West","Korea Central","Korea South","France Central","South
- Africa North","UAE North","Switzerland North","Germany West Central","Norway
- East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"images","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["East
+ US","West US","Central US","North Central US","South Central US","Southeast
+ Asia","Japan East","Japan West","Australia East","Australia Southeast","Australia
+ Central","Brazil South","South India","Central India","West India","Canada
+ Central","Canada East","West US 2","UK West","Korea Central","Korea South","France
+ Central","South Africa North","UAE North","Switzerland North","Germany West
+ Central","Norway East","Jio India West","West US 3","Sweden Central","Qatar
+ Central","Poland Central","Italy North","Israel Central","Spain Central","Mexico
+ Central","New Zealand North","West Central US","East US 2","West Europe","North
+ Europe","UK South","East Asia","East US 2 EUAP","Central US EUAP","East US
+ STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"images","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -940,24 +1018,53 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/diagnostics","locations":["West
Central US","Southeast Asia","East US 2","East US","South Central US","West
Europe","North Europe","West US 2","UK South","Australia East","South India","Central
India","West India","Korea Central","Korea South","Jio India West","Japan
- West","Japan East","East Asia","Canada Central","Canada East","South Africa
- North","Central US","West US 3","West US","UK West","France Central","UAE
- North","Australia Central","Australia Southeast","Switzerland North","Germany
- West Central","Norway East","North Central US","Brazil South","Sweden Central","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview"],"defaultApiVersion":"2021-06-01-preview","capabilities":"None"},{"resourceType":"locations/diagnosticOperations","locations":["West
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/diagnosticOperations","locations":["West
+ Central US","Southeast Asia","East US 2","East US","South Central US","West
+ Europe","North Europe","West US 2","UK South","Australia East","South India","Central
+ India","West India","Korea Central","Korea South","Jio India West","Japan
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/placementScores","locations":["West
Central US","Southeast Asia","East US 2","East US","South Central US","West
Europe","North Europe","West US 2","UK South","Australia East","South India","Central
India","West India","Korea Central","Korea South","Jio India West","Japan
- West","Japan East","East Asia","Canada Central","Canada East","South Africa
- North","Central US","West US 3","West US","UK West","France Central","UAE
- North","Australia Central","Australia Southeast","Switzerland North","Germany
- West Central","Norway East","North Central US","Brazil South","Sweden Central","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview"],"defaultApiVersion":"2021-06-01-preview","capabilities":"None"},{"resourceType":"locations/logAnalytics","locations":["East
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/placementRecommendations","locations":["West
+ Central US","Southeast Asia","East US 2","East US","South Central US","West
+ Europe","North Europe","West US 2","UK South","Australia East","South India","Central
+ India","West India","Korea Central","Korea South","Jio India West","Japan
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/logAnalytics","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -965,7 +1072,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01"],"capabilities":"None"},{"resourceType":"hostGroups","locations":["Central
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01"],"capabilities":"None"},{"resourceType":"hostGroups","locations":["Central
US","East US 2","West Europe","Southeast Asia","France Central","North Europe","West
US 2","East US","UK South","Japan East","Japan West","East Asia","North Central
US","South Central US","Canada East","Korea Central","Brazil South","UK West","Canada
@@ -973,24 +1081,25 @@ interactions:
Southeast","Korea South","West India","South Africa North","UAE North","Australia
Central","Switzerland North","Germany West Central","Norway East","Australia
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"hostGroups/hosts","locations":["Central
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"hostGroups/hosts","locations":["Central
US","East US 2","West Europe","Southeast Asia","France Central","North Europe","West
US 2","East US","UK South","Japan East","Japan West","East Asia","North Central
US","South Central US","Canada East","Korea Central","Brazil South","UK West","Canada
@@ -998,51 +1107,76 @@ interactions:
Southeast","Korea South","West India","South Africa North","UAE North","Australia
Central","Switzerland North","Germany West Central","Norway East","Australia
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"sharedVMExtensions","locations":["East
- US 2 EUAP","Central US EUAP","Southeast Asia","East US 2","Central US","West
- Europe","East US","North Central US","South Central US","West US","North Europe","East
- Asia","Brazil South","West US 2","West Central US","UK West","UK South","Japan
- East","Japan West","Canada Central","Canada East","Central India","South India","Australia
- East","Australia Southeast","Korea Central","Korea South","West India","France
- Central","South Africa North","UAE North","Australia Central","Switzerland
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"sharedVMExtensions","locations":["East
+ US 2 EUAP","Central US EUAP","East US STG","Southeast Asia","East US 2","Central
+ US","West Europe","East US","North Central US","South Central US","West US","North
+ Europe","East Asia","Brazil South","West US 2","West Central US","UK West","UK
+ South","Japan East","Japan West","Canada Central","Canada East","Central India","South
+ India","Australia East","Australia Southeast","Korea Central","Korea South","West
+ India","France Central","South Africa North","UAE North","Australia Central","Switzerland
North","Germany West Central","Norway East","Jio India West","West US 3","Sweden
- Central","Qatar Central","Poland Central","Italy North","Israel Central"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
+ Central","Qatar Central","Poland Central","Italy North","Israel Central","Spain
+ Central","Mexico Central","New Zealand North"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"sharedVMExtensions/versions","locations":["East
- US 2 EUAP","Central US EUAP","Southeast Asia","East US 2","Central US","West
- Europe","East US","North Central US","South Central US","West US","North Europe","East
- Asia","Brazil South","West US 2","West Central US","UK West","UK South","Japan
- East","Japan West","Canada Central","Canada East","Central India","South India","Australia
- East","Australia Southeast","Korea Central","Korea South","West India","France
- Central","South Africa North","UAE North","Australia Central","Switzerland
+ US 2 EUAP","Central US EUAP","East US STG","Southeast Asia","East US 2","Central
+ US","West Europe","East US","North Central US","South Central US","West US","North
+ Europe","East Asia","Brazil South","West US 2","West Central US","UK West","UK
+ South","Japan East","Japan West","Canada Central","Canada East","Central India","South
+ India","Australia East","Australia Southeast","Korea Central","Korea South","West
+ India","France Central","South Africa North","UAE North","Australia Central","Switzerland
North","Germany West Central","Norway East","Jio India West","West US 3","Sweden
- Central","Qatar Central","Poland Central","Italy North","Israel Central"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
+ Central","Qatar Central","Poland Central","Italy North","Israel Central","Spain
+ Central","Mexico Central","New Zealand North"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"galleries/inVMAccessControlProfiles","locations":["East
+ US 2 EUAP","Central US EUAP","East US STG","West Central US","South Central
+ US","East US 2","Southeast Asia","West Europe","West US","East US","Canada
+ Central","North Europe","North Central US","Brazil South","UK West","West
+ India","East Asia","Australia East","Japan East","Korea South","West US 2","Canada
+ East","UK South","Central India","South India","Australia Southeast","Japan
+ West","Korea Central","France Central","Central US","Australia Central","South
+ Africa North","UAE North","Switzerland North","Germany West Central","Norway
+ East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North"],"apiVersions":["2024-03-03"],"defaultApiVersion":"2024-03-03","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"galleries/inVMAccessControlProfiles/versions","locations":["East
+ US 2 EUAP","Central US EUAP","East US STG","West Central US","South Central
+ US","East US 2","Southeast Asia","West Europe","West US","East US","Canada
+ Central","North Europe","North Central US","Brazil South","UK West","West
+ India","East Asia","Australia East","Japan East","Korea South","West US 2","Canada
+ East","UK South","Central India","South India","Australia Southeast","Japan
+ West","Korea Central","France Central","Central US","Australia Central","South
+ Africa North","UAE North","Switzerland North","Germany West Central","Norway
+ East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North"],"apiVersions":["2024-03-03"],"defaultApiVersion":"2024-03-03","capabilities":"SupportsTags,
SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '90590'
+ - '102265'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:31:20 GMT
+ - Tue, 11 Feb 2025 05:51:50 GMT
expires:
- '-1'
pragma:
@@ -1053,8 +1187,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 4339269825D04030B0B5DF8E6FFE728C Ref B: TYO201100116049 Ref C: 2023-12-06T08:31:19Z'
+ - 'Ref A: 4A1DE17C2B69492E84DD06E11F8AA068 Ref B: SEL221051802029 Ref C: 2025-02-11T05:51:50Z'
status:
code: 200
message: OK
@@ -1072,25 +1208,25 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --ppg --nsg-rule
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg?api-version=2023-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg?api-version=2024-11-01
response:
body:
string: "{\r\n \"name\": \"myppg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\",\r\n \"virtualMachines\": [],\r\n \"virtualMachineScaleSets\"\
: [],\r\n \"availabilitySets\": []\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '451'
+ - '436'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:31:20 GMT
+ - Tue, 11 Feb 2025 05:51:51 GMT
expires:
- '-1'
pragma:
@@ -1101,10 +1237,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/HighCostGet3Min;137,Microsoft.Compute/HighCostGet30Min;697
+ - Microsoft.Compute/HighCostGetSubscriptionMaximum;899
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 1872307CC26746EFA5A85848F3B9B222 Ref B: TYO201100115027 Ref C: 2023-12-06T08:31:21Z'
+ - 'Ref A: AB31C175123447C9A1139E62C146C85F Ref B: SEL221051801011 Ref C: 2025-02-11T05:51:51Z'
status:
code: 200
message: ''
@@ -1136,7 +1276,7 @@ interactions:
"10", "version": "latest"}}, "osProfile": {"computerName": "vm1", "adminUsername":
"debian", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh":
{"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==
- aaa@foo.com\n", "path": "/home/debian/.ssh/authorized_keys"}]}}}, "proximityPlacementGroup":
+ test@example.com\n", "path": "/home/debian/.ssh/authorized_keys"}]}}}, "proximityPlacementGroup":
{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg"}}}],
"outputs": {}}, "parameters": {}, "mode": "incremental"}}'
headers:
@@ -1155,23 +1295,23 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --ppg --nsg-rule
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/vm_deploy_ny8DmoNMyNcrnPWSVYQR7GnBLzmONSAr","name":"vm_deploy_ny8DmoNMyNcrnPWSVYQR7GnBLzmONSAr","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7730535145529185744","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-12-06T08:31:24.1286674Z","duration":"PT0.0007542S","correlationId":"a1ae83f4-094d-4378-9650-e960c400e5e2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/vm_deploy_VRpc2t9pTJ77i8TZmC7FFmDbj11bbdMg","name":"vm_deploy_VRpc2t9pTJ77i8TZmC7FFmDbj11bbdMg","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15355958178658567300","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-02-11T05:51:57.2653419Z","duration":"PT0.0007904S","correlationId":"7120be9d-3150-4074-abc3-798eb37e5f97","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/vm_deploy_ny8DmoNMyNcrnPWSVYQR7GnBLzmONSAr/operationStatuses/08584997554021695855?api-version=2019-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/vm_deploy_VRpc2t9pTJ77i8TZmC7FFmDbj11bbdMg/operationStatuses/08584623537715545501?api-version=2019-10-01&t=638748499186383717&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=XIpMVIeafTMeVxuZWd3Dy74sgDedc89sv4261EON0c9KKOVq961K9JZFEL4kJvPY42pPOxJDhUT7X_V1J3HpqOU5UZNRSB9ZmUjA5qIl9fd26x4cVGVydk-ACm4NXoBbtNPiFnKR8vu9uxPbi-xLJyCBb9YI-TI-CN2oIuQhnztETbhZ6xC-dYu4GKsmw5crQMIExZkH6ZZeKrMhT_5AV9U0M7viyoDRaI9Crm_Mqs4RmGPtYtXzJJIv9rzN1aJq03Kua4OiU-r8LkCpKCoFsNcXYVanMKKaX7Ve5jWIpFB3IB9nXlzBQHsAc6FOyMEzpGMGfMF6lCIpZyzlyKAtyg&h=OwKqHxxGAgSZRIVDoAkLqs3ged8NBm21Bp_5X4oB1sc
cache-control:
- no-cache
content-length:
- - '2406'
+ - '2407'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:31:24 GMT
+ - Tue, 11 Feb 2025 05:51:58 GMT
expires:
- '-1'
pragma:
@@ -1182,10 +1322,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-deployment-engine-version:
+ - 1.224.0
+ x-ms-ratelimit-remaining-subscription-global-writes:
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '1194'
+ - '199'
x-msedge-ref:
- - 'Ref A: 29A2FFB174EE46D7A1C249A7FC6930A4 Ref B: TYO201100116021 Ref C: 2023-12-06T08:31:21Z'
+ - 'Ref A: 170B15E4AA75447EB1CFEC92E288D94A Ref B: SEL221051801031 Ref C: 2025-02-11T05:51:52Z'
status:
code: 201
message: Created
@@ -1203,9 +1347,9 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --ppg --nsg-rule
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584997554021695855?api-version=2019-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584623537715545501?api-version=2019-10-01&t=638748499186383717&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=XIpMVIeafTMeVxuZWd3Dy74sgDedc89sv4261EON0c9KKOVq961K9JZFEL4kJvPY42pPOxJDhUT7X_V1J3HpqOU5UZNRSB9ZmUjA5qIl9fd26x4cVGVydk-ACm4NXoBbtNPiFnKR8vu9uxPbi-xLJyCBb9YI-TI-CN2oIuQhnztETbhZ6xC-dYu4GKsmw5crQMIExZkH6ZZeKrMhT_5AV9U0M7viyoDRaI9Crm_Mqs4RmGPtYtXzJJIv9rzN1aJq03Kua4OiU-r8LkCpKCoFsNcXYVanMKKaX7Ve5jWIpFB3IB9nXlzBQHsAc6FOyMEzpGMGfMF6lCIpZyzlyKAtyg&h=OwKqHxxGAgSZRIVDoAkLqs3ged8NBm21Bp_5X4oB1sc
response:
body:
string: '{"status":"Accepted"}'
@@ -1217,7 +1361,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:31:24 GMT
+ - Tue, 11 Feb 2025 05:51:58 GMT
expires:
- '-1'
pragma:
@@ -1228,8 +1372,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3748'
x-msedge-ref:
- - 'Ref A: 0172669F37524D7B97FB5500B82122E2 Ref B: TYO201100116021 Ref C: 2023-12-06T08:31:24Z'
+ - 'Ref A: 7047859FC2044D76A1BD518161647BB7 Ref B: SEL221051801031 Ref C: 2025-02-11T05:51:58Z'
status:
code: 200
message: OK
@@ -1247,9 +1393,9 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --ppg --nsg-rule
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584997554021695855?api-version=2019-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584623537715545501?api-version=2019-10-01&t=638748499186383717&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=XIpMVIeafTMeVxuZWd3Dy74sgDedc89sv4261EON0c9KKOVq961K9JZFEL4kJvPY42pPOxJDhUT7X_V1J3HpqOU5UZNRSB9ZmUjA5qIl9fd26x4cVGVydk-ACm4NXoBbtNPiFnKR8vu9uxPbi-xLJyCBb9YI-TI-CN2oIuQhnztETbhZ6xC-dYu4GKsmw5crQMIExZkH6ZZeKrMhT_5AV9U0M7viyoDRaI9Crm_Mqs4RmGPtYtXzJJIv9rzN1aJq03Kua4OiU-r8LkCpKCoFsNcXYVanMKKaX7Ve5jWIpFB3IB9nXlzBQHsAc6FOyMEzpGMGfMF6lCIpZyzlyKAtyg&h=OwKqHxxGAgSZRIVDoAkLqs3ged8NBm21Bp_5X4oB1sc
response:
body:
string: '{"status":"Running"}'
@@ -1261,7 +1407,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:31:55 GMT
+ - Tue, 11 Feb 2025 05:52:29 GMT
expires:
- '-1'
pragma:
@@ -1272,8 +1418,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 7347AA7B82404148BD950D6597D3273D Ref B: TYO201100116021 Ref C: 2023-12-06T08:31:55Z'
+ - 'Ref A: 112DB3B4DED347C681750A75BC6388C5 Ref B: SEL221051801031 Ref C: 2025-02-11T05:52:29Z'
status:
code: 200
message: OK
@@ -1291,9 +1439,9 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --ppg --nsg-rule
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584997554021695855?api-version=2019-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584623537715545501?api-version=2019-10-01&t=638748499186383717&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=XIpMVIeafTMeVxuZWd3Dy74sgDedc89sv4261EON0c9KKOVq961K9JZFEL4kJvPY42pPOxJDhUT7X_V1J3HpqOU5UZNRSB9ZmUjA5qIl9fd26x4cVGVydk-ACm4NXoBbtNPiFnKR8vu9uxPbi-xLJyCBb9YI-TI-CN2oIuQhnztETbhZ6xC-dYu4GKsmw5crQMIExZkH6ZZeKrMhT_5AV9U0M7viyoDRaI9Crm_Mqs4RmGPtYtXzJJIv9rzN1aJq03Kua4OiU-r8LkCpKCoFsNcXYVanMKKaX7Ve5jWIpFB3IB9nXlzBQHsAc6FOyMEzpGMGfMF6lCIpZyzlyKAtyg&h=OwKqHxxGAgSZRIVDoAkLqs3ged8NBm21Bp_5X4oB1sc
response:
body:
string: '{"status":"Succeeded"}'
@@ -1305,7 +1453,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:33:31 GMT
+ - Tue, 11 Feb 2025 05:53:00 GMT
expires:
- '-1'
pragma:
@@ -1316,8 +1464,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: CC48F7D817C54A3AAC25330C02E6B877 Ref B: MAA201060514035 Ref C: 2023-12-06T08:33:31Z'
+ - 'Ref A: C6CDAC2868C44F5EA62BB6AA59DD74AE Ref B: SEL221051801031 Ref C: 2025-02-11T05:53:00Z'
status:
code: 200
message: OK
@@ -1335,21 +1485,21 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --ppg --nsg-rule
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/vm_deploy_ny8DmoNMyNcrnPWSVYQR7GnBLzmONSAr","name":"vm_deploy_ny8DmoNMyNcrnPWSVYQR7GnBLzmONSAr","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7730535145529185744","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-12-06T08:32:14.0032095Z","duration":"PT49.8752963S","correlationId":"a1ae83f4-094d-4378-9650-e960c400e5e2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/vm_deploy_VRpc2t9pTJ77i8TZmC7FFmDbj11bbdMg","name":"vm_deploy_VRpc2t9pTJ77i8TZmC7FFmDbj11bbdMg","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15355958178658567300","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-02-11T05:52:45.3004354Z","duration":"PT48.0358839S","correlationId":"7120be9d-3150-4074-abc3-798eb37e5f97","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}'
headers:
cache-control:
- no-cache
content-length:
- - '3231'
+ - '3232'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:33:32 GMT
+ - Tue, 11 Feb 2025 05:53:00 GMT
expires:
- '-1'
pragma:
@@ -1360,8 +1510,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3748'
x-msedge-ref:
- - 'Ref A: 5AA55F55908C48A6922B518F32F4CB8C Ref B: MAA201060514035 Ref C: 2023-12-06T08:33:32Z'
+ - 'Ref A: 30F957DCEE7D48F8AAC53ABD62D7E6F1 Ref B: SEL221051801031 Ref C: 2025-02-11T05:53:00Z'
status:
code: 200
message: OK
@@ -1379,7 +1531,7 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --ppg --nsg-rule
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-06-01
response:
@@ -1388,16 +1540,16 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"b4d3c211-0f08-40d2-98d5-39bdb1565a69\"\
- ,\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_JLVCO4GEYM4V7S73EGJL6U6X455MQ4Q7EGET2QM476AB5BMZUYXFGR/providers/Microsoft.Compute/proximityPlacementGroups/myppg\"\
+ : \"Succeeded\",\r\n \"vmId\": \"76320f8e-7725-47b2-bde7-0969193d02b2\"\
+ ,\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_WVJLP2SQJR7ZWMXXVMTYG2L26XPSBBOISBG7AARJMIGH5HDBV4EA5P/providers/Microsoft.Compute/proximityPlacementGroups/myppg\"\
\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n\
\ \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\
\n \"sku\": \"10\",\r\n \"version\": \"latest\",\r\n \
- \ \"exactVersion\": \"0.20230802.1460\"\r\n },\r\n \"osDisk\": {\r\
- \n \"osType\": \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_e1e980cf9e0d4efcba7e0e2d825a4476\"\
+ \ \"exactVersion\": \"0.20240430.1733\"\r\n },\r\n \"osDisk\": {\r\
+ \n \"osType\": \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_04dcf70b82d54392a1a1c1f3614d1382\"\
,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\
,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e1e980cf9e0d4efcba7e0e2d825a4476\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_04dcf70b82d54392a1a1c1f3614d1382\"\
\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\
: []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\"\
,\r\n \"adminUsername\": \"debian\",\r\n \"linuxConfiguration\"\
@@ -1405,7 +1557,7 @@ interactions:
: {\r\n \"publicKeys\": [\r\n {\r\n \"path\"\
: \"/home/debian/.ssh/authorized_keys\",\r\n \"keyData\": \"\
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\
- \ aaa@foo.com\\n\"\r\n }\r\n ]\r\n },\r\n\
+ \ test@example.com\\n\"\r\n }\r\n ]\r\n },\r\n\
\ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \
\ \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \
\ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \
@@ -1417,17 +1569,17 @@ interactions:
: [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\
,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"\
Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \
- \ \"time\": \"2023-12-06T08:32:17+00:00\"\r\n }\r\n \
+ \ \"time\": \"2025-02-11T05:52:47+00:00\"\r\n }\r\n \
\ ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\":\
- \ [\r\n {\r\n \"name\": \"vm1_OsDisk_1_e1e980cf9e0d4efcba7e0e2d825a4476\"\
+ \ [\r\n {\r\n \"name\": \"vm1_OsDisk_1_04dcf70b82d54392a1a1c1f3614d1382\"\
,\r\n \"statuses\": [\r\n {\r\n \"code\"\
: \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\
\n \"displayStatus\": \"Provisioning succeeded\",\r\n \
- \ \"time\": \"2023-12-06T08:31:44.5069899+00:00\"\r\n }\r\
+ \ \"time\": \"2025-02-11T05:52:20.5364655+00:00\"\r\n }\r\
\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\"\
,\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\
,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\
- \ succeeded\",\r\n \"time\": \"2023-12-06T08:32:11.0540575+00:00\"\
+ \ succeeded\",\r\n \"time\": \"2025-02-11T05:52:42.271067+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 \"code\": \"ColocationStatus/Aligned\"\
@@ -1437,11 +1589,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '4426'
+ - '4425'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:33:33 GMT
+ - Tue, 11 Feb 2025 05:53:01 GMT
expires:
- '-1'
pragma:
@@ -1452,10 +1604,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGetSubscriptionMaximum;23989,Microsoft.Compute/LowCostGetResource;35
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;33
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 6AA8DC6FE977468DA6398B831480DF82 Ref B: MAA201060515025 Ref C: 2023-12-06T08:33:33Z'
+ - 'Ref A: 027D3E8E55444FBDA294DCB05DA84430 Ref B: SEL221051803023 Ref C: 2025-02-11T05:53:01Z'
status:
code: 200
message: ''
@@ -1473,46 +1629,23 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --ppg --nsg-rule
User-Agent:
- - AZURECLI/2.55.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2018-11-01
response:
body:
- string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- ,\r\n \"etag\": \"W/\\\"555cec0a-5bba-4810-9f8e-6834cd76196a\\\"\",\r\n \
- \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"c1a6fc3b-ac1d-4654-8fc8-5d36e9c82e8c\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\
- ,\r\n \"etag\": \"W/\\\"555cec0a-5bba-4810-9f8e-6834cd76196a\\\"\"\
- ,\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\
- \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"\
- \r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
- : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\
- \ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\
- internalDomainNameSuffix\": \"xtnl20rmky1ubckl4qmkscvnaf.dx.internal.cloudapp.net\"\
- \r\n },\r\n \"macAddress\": \"60-45-BD-04-16-F6\",\r\n \"enableIPForwarding\"\
- : false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\
- \r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachines/vm1\"\
- \r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": []\r\
- \n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"location\"\
- : \"westus\"\r\n}"
+ string: '{"name":"vm1VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","etag":"W/\"d901d1e8-acca-4ca9-a17f-87adac7e9c15\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"ea13c894-be57-4194-b166-359d00a2e18c","ipConfigurations":[{"name":"ipconfigvm1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1","etag":"W/\"d901d1e8-acca-4ca9-a17f-87adac7e9c15\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"4dzi1ahtsjbula5qr1ugt0xofg.dx.internal.cloudapp.net"},"macAddress":"60-45-BD-00-73-D1","enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"hostedWorkloads":[],"tapConfigurations":[]},"type":"Microsoft.Network/networkInterfaces","location":"westus"}'
headers:
cache-control:
- no-cache
content-length:
- - '2295'
+ - '1882'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:33:34 GMT
+ - Tue, 11 Feb 2025 05:53:01 GMT
etag:
- - W/"555cec0a-5bba-4810-9f8e-6834cd76196a"
+ - W/"d901d1e8-acca-4ca9-a17f-87adac7e9c15"
expires:
- '-1'
pragma:
@@ -1524,9 +1657,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - e89359ea-f8f4-4865-b38a-171976d13bd3
+ - ebc8780d-d314-4f67-9fdf-6b3e3b961025
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 1C43C311027841A4B8F8A05B388B6FDD Ref B: MAA201060516023 Ref C: 2023-12-06T08:33:34Z'
+ - 'Ref A: 6137A659C13840EAAED3F1CCCD31C487 Ref B: SEL221051802045 Ref C: 2025-02-11T05:53:02Z'
status:
code: 200
message: OK
@@ -1544,32 +1679,23 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --ppg --nsg-rule
User-Agent:
- - AZURECLI/2.55.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2018-11-01
response:
body:
- string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\
- ,\r\n \"etag\": \"W/\\\"f6fd6135-73dc-4212-b119-8024a2df8f22\\\"\",\r\n \
- \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\
- \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dfde795d-f6ca-40b2-9a19-e67a78f04c28\"\
- ,\r\n \"ipAddress\": \"104.209.33.146\",\r\n \"publicIPAddressVersion\"\
- : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\"\
- : 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\
- \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\
- \n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}"
+ string: '{"name":"vm1PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","etag":"W/\"3f56a887-0ad4-4fd6-a024-e1824fe707ca\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"41799de2-b888-4dc6-b528-978e0d248250","ipAddress":"20.168.146.62","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard"}}'
headers:
cache-control:
- no-cache
content-length:
- - '904'
+ - '775'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:33:35 GMT
+ - Tue, 11 Feb 2025 05:53:02 GMT
etag:
- - W/"f6fd6135-73dc-4212-b119-8024a2df8f22"
+ - W/"3f56a887-0ad4-4fd6-a024-e1824fe707ca"
expires:
- '-1'
pragma:
@@ -1581,9 +1707,225 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - ee4e861d-9882-4502-a552-2a6d199ade72
+ - 579ddf84-954e-4b3e-adf5-71611836560b
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 5ADB03CBD10E4D478B380B65F6831BA9 Ref B: MAA201060513027 Ref C: 2023-12-06T08:33:35Z'
+ - 'Ref A: 051E047AE6834E93B7F078F621155773 Ref B: SEL221051503051 Ref C: 2025-02-11T05:53:02Z'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network nsg create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001?api-version=2019-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001","name":"cli_test_ppg_vm_vmss_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_with_related_resources","date":"2025-02-11T05:51:37Z","module":"vm","DateCreated":"2025-02-11T05:51:45Z","Creator":"zhuyan@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '457'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 11 Feb 2025 05:53:03 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-msedge-ref:
+ - 'Ref A: 24D9BCBF615344F4BAD8124A4915C8E8 Ref B: SEL221051804011 Ref C: 2025-02-11T05:53:03Z'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "westus"}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network nsg create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '22'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1?api-version=2018-11-01
+ response:
+ body:
+ string: '{"name":"nsg1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1","etag":"W/\"f491033b-254b-4718-a49a-8f69fddf79d7\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","properties":{"provisioningState":"Updating","resourceGuid":"6ad69d0b-c3c3-4f4f-b0df-d0e2570411a9","securityRules":[],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetInBound","etag":"W/\"f491033b-254b-4718-a49a-8f69fddf79d7\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Updating","description":"Allow
+ inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"f491033b-254b-4718-a49a-8f69fddf79d7\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Updating","description":"Allow
+ inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllInBound","etag":"W/\"f491033b-254b-4718-a49a-8f69fddf79d7\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Updating","description":"Deny
+ all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"f491033b-254b-4718-a49a-8f69fddf79d7\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Updating","description":"Allow
+ outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"f491033b-254b-4718-a49a-8f69fddf79d7\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Updating","description":"Allow
+ outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllOutBound","etag":"W/\"f491033b-254b-4718-a49a-8f69fddf79d7\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Updating","description":"Deny
+ all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}]}}'
+ headers:
+ azure-asyncnotification:
+ - Enabled
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/445323ec-ecd5-4dc9-910b-45d48596c02f?api-version=2018-11-01&t=638748499865697685&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=S19ZYA6a71xs62cCTbeEe440oGUlfZP4T_joFxuwOTDAwQuaN7RabT0BGASVEa6hMEffJgPKBD-He7E74mOUI3BV_StdsYFkIgXJF8rLdL4p3EUdoFBMTdLx9m4oUvcd4MUnW88vJnpUKpBz_9a1iJYQ7ae_R4nXwO2_Z4Iz8QV2hy4JSE8K2kbzRbiPgdPQl3DBqlg8A_TJyQC_dlKRRb7-PM3pVGIvLbIWAz13GqvSJyUZXJUNYWamZihwM40xLVonK5AFZoFFVN-93JveLSnblfXjLi1_ZGVrLiv3LnZ1wSDYbWEIgu68XEf1-EZNDpoT2RfuSvIFRhXpcDXv8A&h=wSruZFnOfldbcdtL7cnJLmNQvxRR4xeHo7rZ1Q0r6tM
+ cache-control:
+ - no-cache
+ content-length:
+ - '4941'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 11 Feb 2025 05:53: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-arm-service-request-id:
+ - 801bff1f-257f-4620-9eb9-476aefd1063b
+ x-ms-ratelimit-remaining-subscription-global-writes:
+ - '2999'
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '199'
+ x-msedge-ref:
+ - 'Ref A: C0F15B4F25A849A880A30B45CA3E5C03 Ref B: SEL221051503047 Ref C: 2025-02-11T05:53:04Z'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network nsg create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/445323ec-ecd5-4dc9-910b-45d48596c02f?api-version=2018-11-01&t=638748499865697685&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=S19ZYA6a71xs62cCTbeEe440oGUlfZP4T_joFxuwOTDAwQuaN7RabT0BGASVEa6hMEffJgPKBD-He7E74mOUI3BV_StdsYFkIgXJF8rLdL4p3EUdoFBMTdLx9m4oUvcd4MUnW88vJnpUKpBz_9a1iJYQ7ae_R4nXwO2_Z4Iz8QV2hy4JSE8K2kbzRbiPgdPQl3DBqlg8A_TJyQC_dlKRRb7-PM3pVGIvLbIWAz13GqvSJyUZXJUNYWamZihwM40xLVonK5AFZoFFVN-93JveLSnblfXjLi1_ZGVrLiv3LnZ1wSDYbWEIgu68XEf1-EZNDpoT2RfuSvIFRhXpcDXv8A&h=wSruZFnOfldbcdtL7cnJLmNQvxRR4xeHo7rZ1Q0r6tM
+ response:
+ body:
+ string: '{"status":"Succeeded"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '22'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 11 Feb 2025 05:53: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-arm-service-request-id:
+ - ff17335f-cf48-46c3-892c-06e292260220
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
+ x-msedge-ref:
+ - 'Ref A: 2833BFEB46434E68A413AD26A7B8E4D8 Ref B: SEL221051503047 Ref C: 2025-02-11T05:53:06Z'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network nsg create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1?api-version=2018-11-01
+ response:
+ body:
+ string: '{"name":"nsg1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1","etag":"W/\"36476e2a-6874-440e-80de-bc85bce81bd9\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"6ad69d0b-c3c3-4f4f-b0df-d0e2570411a9","securityRules":[],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetInBound","etag":"W/\"36476e2a-6874-440e-80de-bc85bce81bd9\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow
+ inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"36476e2a-6874-440e-80de-bc85bce81bd9\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow
+ inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllInBound","etag":"W/\"36476e2a-6874-440e-80de-bc85bce81bd9\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Deny
+ all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"36476e2a-6874-440e-80de-bc85bce81bd9\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow
+ outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"36476e2a-6874-440e-80de-bc85bce81bd9\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow
+ outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllOutBound","etag":"W/\"36476e2a-6874-440e-80de-bc85bce81bd9\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Deny
+ all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}]}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4948'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 11 Feb 2025 05:53:07 GMT
+ etag:
+ - W/"36476e2a-6874-440e-80de-bc85bce81bd9"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-cache:
+ - CONFIG_NOCACHE
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 230ef98d-0a95-4baa-860f-b55b42db4562
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
+ x-msedge-ref:
+ - 'Ref A: 99D1BFBC0EC145E7836E6F716B44651F Ref B: SEL221051503047 Ref C: 2025-02-11T05:53:06Z'
status:
code: 200
message: OK
@@ -1599,23 +1941,23 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg
+ - -g -n --image --admin-username --ssh-key-value --ppg --nsg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001?api-version=2019-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001","name":"cli_test_ppg_vm_vmss_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_with_related_resources","date":"2023-12-06T08:31:16Z","module":"vm","DateCreated":"2023-12-06T08:33:17Z","Creator":"aaa@foo.com"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001","name":"cli_test_ppg_vm_vmss_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_with_related_resources","date":"2025-02-11T05:51:37Z","module":"vm","DateCreated":"2025-02-11T05:51:45Z","Creator":"zhuyan@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
content-length:
- - '463'
+ - '457'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:33:36 GMT
+ - Tue, 11 Feb 2025 05:53:07 GMT
expires:
- '-1'
pragma:
@@ -1626,8 +1968,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 81176F0E09D54966B7ADA5B09CD33A4A Ref B: MAA201060514039 Ref C: 2023-12-06T08:33:36Z'
+ - 'Ref A: E8C31F7EB29E4B768334FA69EAF3C1F3 Ref B: SEL221051804011 Ref C: 2025-02-11T05:53:08Z'
status:
code: 200
message: OK
@@ -1643,15 +1987,15 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg
+ - -g -n --image --admin-username --ssh-key-value --ppg --nsg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2020-06-01
response:
body:
- string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20230802.1460\"\
- ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20230802.1460\"\
+ string: "[\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"0.20240430.1733\"\
+ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\
\r\n }\r\n]"
headers:
cache-control:
@@ -1661,7 +2005,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:33:36 GMT
+ - Tue, 11 Feb 2025 05:53:09 GMT
expires:
- '-1'
pragma:
@@ -1673,9 +2017,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15992,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43957
+ - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15996,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43996
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 546B9D5798FD497CB408A1128307819C Ref B: MAA201060514023 Ref C: 2023-12-06T08:33:37Z'
+ - 'Ref A: F17EC4DEA3344BE8863993B78334847D Ref B: SEL221051801049 Ref C: 2025-02-11T05:53:08Z'
status:
code: 200
message: OK
@@ -1691,11 +2037,11 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg
+ - -g -n --image --admin-username --ssh-key-value --ppg --nsg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20230802.1460?api-version=2020-06-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2020-06-01
response:
body:
string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n \
@@ -1710,7 +2056,7 @@ interactions:
,\r\n \"value\": \"False\"\r\n }\r\n ],\r\n \"osDiskImage\"\
: {\r\n \"operatingSystem\": \"Linux\",\r\n \"sizeInBytes\": 32212255232\r\
\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westus\"\
- ,\r\n \"name\": \"0.20230802.1460\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20230802.1460\"\
+ ,\r\n \"name\": \"0.20240430.1733\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Debian/ArtifactTypes/VMImage/Offers/debian-10/Skus/10/Versions/0.20240430.1733\"\
\r\n}"
headers:
cache-control:
@@ -1720,7 +2066,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:33:37 GMT
+ - Tue, 11 Feb 2025 05:53:09 GMT
expires:
- '-1'
pragma:
@@ -1732,9 +2078,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMImageFromLocation3Min;12996,Microsoft.Compute/GetVMImageFromLocation30Min;73977
+ - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73997
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 5D8CEFF082D24C33888D3E88916C45DA Ref B: MAA201060516017 Ref C: 2023-12-06T08:33:37Z'
+ - 'Ref A: 96C0FAD0918F435CB7133B457265E9AA Ref B: SEL221051803049 Ref C: 2025-02-11T05:53:09Z'
status:
code: 200
message: OK
@@ -1750,41 +2098,23 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg
+ - -g -n --image --admin-username --ssh-key-value --ppg --nsg
User-Agent:
- - AZURECLI/2.55.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-11-01
response:
body:
- string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\"\
- ,\r\n \"etag\": \"W/\\\"a0f630d7-c64a-46b6-9c6d-72821fc94fa1\\\"\",\r\
- \n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \
- \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6abedabc-562c-4037-894b-f418a90aad05\"\
- ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \
- \ \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\"\
- : [\r\n {\r\n \"name\": \"vm1Subnet\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"\
- ,\r\n \"etag\": \"W/\\\"a0f630d7-c64a-46b6-9c6d-72821fc94fa1\\\"\
- \",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n\
- \ \"ipConfigurations\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_JLVCO4GEYM4V7S73EGJL6U6X455MQ4Q7EGET2QM476AB5BMZUYXFGR/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1\"\
- \r\n }\r\n ],\r\n \"delegations\"\
- : []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\
- \r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\
- \n \"enableDdosProtection\": false\r\n }\r\n }\r\n ]\r\n}"
+ string: '{"value":[{"name":"vm1VNET","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","etag":"W/\"7ed63cfb-ebe2-49ab-9431-c50374c009bc\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"808df2f0-92f3-4543-83f0-8ee869eaee2e","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"vm1Subnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet","etag":"W/\"7ed63cfb-ebe2-49ab-9431-c50374c009bc\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_WVJLP2SQJR7ZWMXXVMTYG2L26XPSBBOISBG7AARJMIGH5HDBV4EA5P/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[]},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}]}'
headers:
cache-control:
- no-cache
content-length:
- - '1650'
+ - '1177'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:33:38 GMT
+ - Tue, 11 Feb 2025 05:53:10 GMT
expires:
- '-1'
pragma:
@@ -1796,9 +2126,13 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 69d53727-e949-4e21-afdb-cfece67c29ea
+ - 5ed8a4f2-2696-4c17-a555-643a7b9118e1
+ x-ms-original-request-ids:
+ - 1008816c-5117-4436-b2b1-1bd1cdeaecf9
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3748'
x-msedge-ref:
- - 'Ref A: 197E956798F84339ABB6D754ADCDF7D6 Ref B: MAA201060514027 Ref C: 2023-12-06T08:33:39Z'
+ - 'Ref A: 9505FE83675743CA830E8B7948AB0C7B Ref B: SEL221051503019 Ref C: 2025-02-11T05:53:10Z'
status:
code: 200
message: OK
@@ -1814,14 +2148,61 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg
+ - -g -n --image --admin-username --ssh-key-value --ppg --nsg
+ User-Agent:
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute?api-version=2019-10-01
+ response:
+ body:
+ string: '
AzureResourceManagerOur services aren''t available right now
We''re
+ working to restore all services as soon as possible. Please check back soon.
Ref A: 89B41D5F84094560B8BCD155E7819D54 Ref B: SEL221051804023
+ Ref C: 2025-02-11T05:53:10Z
'
+ headers:
+ cache-control:
+ - no-store
+ content-length:
+ - '988'
+ content-type:
+ - text/html
+ date:
+ - Tue, 11 Feb 2025 05:55:43 GMT
+ x-azure-externalerror:
+ - 0x80072ee2,OriginTimeout
+ x-msedge-ref:
+ - 'Ref A: 89B41D5F84094560B8BCD155E7819D54 Ref B: SEL221051804023 Ref C: 2025-02-11T05:53:10Z'
+ status:
+ code: 503
+ message: Service Unavailable
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --admin-username --ssh-key-value --ppg --nsg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute?api-version=2019-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"184909ca-69f1-4368-a6a7-c558ee6eb0bd","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"5e5e43d4-54da-4211-86a4-c6e7f3715801","roleDefinitionId":"ffcd6e5b-8772-457d-bb17-89703c03428f"},{"applicationId":"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"},{"applicationId":"372140e0-b3b7-4226-8ef9-d57986796201","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"},{"applicationId":"579d9c9d-4c83-4efc-8124-7eba65ed3356","roleDefinitionId":"8c99c4ce-d744-4597-a2f0-0a0044d67560"},{"applicationId":"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab","roleDefinitionId":"6efa92ca-56b6-40af-a468-5e3d2b5232f0"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"274dd4a6-9687-462d-9bee-4f973b07ce46"},{"applicationId":"184909ca-69f1-4368-a6a7-c558ee6eb0bd","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"5e5e43d4-54da-4211-86a4-c6e7f3715801","roleDefinitionId":"ffcd6e5b-8772-457d-bb17-89703c03428f"},{"applicationId":"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"},{"applicationId":"372140e0-b3b7-4226-8ef9-d57986796201","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"},{"applicationId":"579d9c9d-4c83-4efc-8124-7eba65ed3356","roleDefinitionId":"8c99c4ce-d744-4597-a2f0-0a0044d67560"},{"applicationId":"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab","roleDefinitionId":"6efa92ca-56b6-40af-a468-5e3d2b5232f0"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1829,7 +2210,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualMachines","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -1838,23 +2220,25 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"virtualMachines/extensions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
@@ -1864,7 +2248,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualMachineScaleSets","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -1873,23 +2258,25 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"virtualMachineScaleSets/extensions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
@@ -1899,7 +2286,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2015-06-15","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2015-06-15","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1907,7 +2295,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/extensions","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/extensions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1915,7 +2304,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1923,7 +2313,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1931,7 +2322,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1939,7 +2331,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/operations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1947,7 +2340,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/vmSizes","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/vmSizes","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1955,7 +2349,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/runCommands","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/runCommands","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1963,7 +2358,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachines","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachines","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1971,7 +2367,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachineScaleSets","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachineScaleSets","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1979,7 +2376,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/publishers","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/publishers","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1987,7 +2385,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"operations","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"operations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1995,7 +2394,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"None"},{"resourceType":"virtualMachines/runCommands","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"None"},{"resourceType":"virtualMachines/runCommands","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -2003,7 +2403,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2022-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2023-09-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualMachineScaleSets/applications","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -2012,7 +2413,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"virtualMachines/VMApplications","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"virtualMachines/VMApplications","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -2020,8 +2422,9 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2022-03-01","capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"locations/edgeZones","locations":[],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/vmimages","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2023-09-01","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"locations/edgeZones","locations":[],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/vmimages","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -2029,7 +2432,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/publishers","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/publishers","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -2037,7 +2441,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"restorePointCollections","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"restorePointCollections","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -2045,7 +2450,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"defaultApiVersion":"2022-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"defaultApiVersion":"2023-09-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"restorePointCollections/restorePoints","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -2054,7 +2460,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"capabilities":"None"},{"resourceType":"proximityPlacementGroups","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"capabilities":"None"},{"resourceType":"proximityPlacementGroups","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -2062,23 +2469,25 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":[]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":[]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"sshPublicKeys","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -2087,7 +2496,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2022-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2023-09-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"capacityReservationGroups","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -2096,24 +2506,25 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"capacityReservationGroups/capacityReservations","locations":["East
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"capacityReservationGroups/capacityReservations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -2121,24 +2532,25 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"virtualMachines/metricDefinitions","locations":["East
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"virtualMachines/metricDefinitions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -2146,7 +2558,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Israel
- Central","Poland Central","Italy North","East US 2 EUAP","Central US EUAP"],"apiVersions":["2014-04-01"],"capabilities":"None"},{"resourceType":"locations/spotEvictionRates","locations":["East
+ Central","Poland Central","Italy North","Mexico Central","Spain Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2014-04-01"],"capabilities":"None"},{"resourceType":"locations/spotEvictionRates","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -2154,7 +2567,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"locations/spotPriceHistory","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"locations/spotPriceHistory","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -2162,7 +2576,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"locations/recommendations","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"locations/recommendations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -2170,7 +2585,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"locations/sharedGalleries","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"locations/sharedGalleries","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -2178,7 +2594,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/communityGalleries","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/communityGalleries","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -2186,27 +2603,28 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"sharedVMImages","locations":["West
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"sharedVMImages","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan
West","Korea Central","France Central","Central US","Australia Central","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2017-10-15-preview"],"defaultApiVersion":"2017-10-15-preview","capabilities":"SupportsTags,
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2017-10-15-preview"],"defaultApiVersion":"2017-10-15-preview","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"sharedVMImages/versions","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan
West","Korea Central","France Central","Central US","Australia Central","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2017-10-15-preview"],"defaultApiVersion":"2017-10-15-preview","capabilities":"SupportsTags,
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2017-10-15-preview"],"defaultApiVersion":"2017-10-15-preview","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/artifactPublishers","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan
West","Korea Central","France Central","Central US","Australia Central","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2017-10-15-preview"],"capabilities":"None"},{"resourceType":"locations/capsoperations","locations":["West
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2017-10-15-preview"],"capabilities":"None"},{"resourceType":"locations/capsoperations","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
@@ -2214,7 +2632,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01","2017-10-15-preview"],"capabilities":"None"},{"resourceType":"galleries","locations":["West
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01","2017-10-15-preview"],"capabilities":"None"},{"resourceType":"galleries","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
@@ -2222,16 +2641,18 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2018-06-01","capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"galleries/images","locations":["West Central
- US","South Central US","East US 2","Southeast Asia","West Europe","West US","East
- US","Canada Central","North Europe","North Central US","Brazil South","UK
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2023-07-03","capabilities":"SystemAssignedResourceIdentity,
+ SupportsTags, SupportsLocation"},{"resourceType":"galleries/images","locations":["West
+ Central US","South Central US","East US 2","Southeast Asia","West Europe","West
+ US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2018-06-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"galleries/images/versions","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -2240,7 +2661,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2018-06-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/galleries","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -2249,7 +2671,9 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2018-06-01","capabilities":"None"},{"resourceType":"galleries/applications","locations":["West
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"None"},{"resourceType":"payloadGroups","locations":["South
+ Central US","West Europe"],"apiVersions":["2024-03-03","2023-07-03"],"capabilities":"None"},{"resourceType":"galleries/applications","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
@@ -2257,7 +2681,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2019-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"galleries/applications/versions","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -2266,7 +2691,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2019-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"disks","locations":["Southeast Asia","East
US 2","Central US","West Europe","East US","North Central US","South Central
US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -2275,23 +2701,25 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"snapshots","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -2300,7 +2728,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/diskoperations","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -2309,7 +2738,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"diskEncryptionSets","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"diskEncryptionSets","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -2317,7 +2747,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01"],"defaultApiVersion":"2022-03-02","capabilities":"SystemAssignedResourceIdentity,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01"],"defaultApiVersion":"2022-03-02","capabilities":"SystemAssignedResourceIdentity,
SupportsTags, SupportsLocation"},{"resourceType":"diskAccesses","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -2326,7 +2757,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01"],"defaultApiVersion":"2022-03-02","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01"],"defaultApiVersion":"2022-03-02","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"restorePointCollections/restorePoints/diskRestorePoints","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -2335,7 +2767,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30"],"defaultApiVersion":"2022-03-02","capabilities":"None"},{"resourceType":"virtualMachineScaleSets/disks","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30"],"defaultApiVersion":"2022-03-02","capabilities":"None"},{"resourceType":"virtualMachineScaleSets/disks","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -2343,7 +2776,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"cloudServices","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"cloudServices","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -2351,23 +2785,25 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"cloudServices/roles","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -2376,7 +2812,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/roleInstances","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/roleInstances","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -2384,7 +2821,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/csoperations","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/csoperations","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -2392,7 +2830,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/cloudServiceOsVersions","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/cloudServiceOsVersions","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -2400,7 +2839,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/cloudServiceOsFamilies","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/cloudServiceOsFamilies","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -2408,7 +2848,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/networkInterfaces","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/networkInterfaces","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -2416,7 +2857,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/roleInstances/networkInterfaces","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/roleInstances/networkInterfaces","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -2424,7 +2866,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/publicIPAddresses","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/publicIPAddresses","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -2432,15 +2875,18 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["East
- US","East US 2","West US","Central US","North Central US","South Central US","North
- Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
- East","Australia Southeast","Australia Central","Brazil South","South India","Central
- India","West India","Canada Central","Canada East","West US 2","West Central
- US","UK South","UK West","Korea Central","Korea South","France Central","South
- Africa North","UAE North","Switzerland North","Germany West Central","Norway
- East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"images","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["East
+ US","West US","Central US","North Central US","South Central US","Southeast
+ Asia","Japan East","Japan West","Australia East","Australia Southeast","Australia
+ Central","Brazil South","South India","Central India","West India","Canada
+ Central","Canada East","West US 2","UK West","Korea Central","Korea South","France
+ Central","South Africa North","UAE North","Switzerland North","Germany West
+ Central","Norway East","Jio India West","West US 3","Sweden Central","Qatar
+ Central","Poland Central","Italy North","Israel Central","Spain Central","Mexico
+ Central","New Zealand North","West Central US","East US 2","West Europe","North
+ Europe","UK South","East Asia","East US 2 EUAP","Central US EUAP","East US
+ STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"images","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -2448,24 +2894,53 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/diagnostics","locations":["West
Central US","Southeast Asia","East US 2","East US","South Central US","West
Europe","North Europe","West US 2","UK South","Australia East","South India","Central
India","West India","Korea Central","Korea South","Jio India West","Japan
- West","Japan East","East Asia","Canada Central","Canada East","South Africa
- North","Central US","West US 3","West US","UK West","France Central","UAE
- North","Australia Central","Australia Southeast","Switzerland North","Germany
- West Central","Norway East","North Central US","Brazil South","Sweden Central","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview"],"defaultApiVersion":"2021-06-01-preview","capabilities":"None"},{"resourceType":"locations/diagnosticOperations","locations":["West
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/diagnosticOperations","locations":["West
+ Central US","Southeast Asia","East US 2","East US","South Central US","West
+ Europe","North Europe","West US 2","UK South","Australia East","South India","Central
+ India","West India","Korea Central","Korea South","Jio India West","Japan
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/placementScores","locations":["West
+ Central US","Southeast Asia","East US 2","East US","South Central US","West
+ Europe","North Europe","West US 2","UK South","Australia East","South India","Central
+ India","West India","Korea Central","Korea South","Jio India West","Japan
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/placementRecommendations","locations":["West
Central US","Southeast Asia","East US 2","East US","South Central US","West
Europe","North Europe","West US 2","UK South","Australia East","South India","Central
India","West India","Korea Central","Korea South","Jio India West","Japan
- West","Japan East","East Asia","Canada Central","Canada East","South Africa
- North","Central US","West US 3","West US","UK West","France Central","UAE
- North","Australia Central","Australia Southeast","Switzerland North","Germany
- West Central","Norway East","North Central US","Brazil South","Sweden Central","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview"],"defaultApiVersion":"2021-06-01-preview","capabilities":"None"},{"resourceType":"locations/logAnalytics","locations":["East
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/logAnalytics","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -2473,7 +2948,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01"],"capabilities":"None"},{"resourceType":"hostGroups","locations":["Central
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01"],"capabilities":"None"},{"resourceType":"hostGroups","locations":["Central
US","East US 2","West Europe","Southeast Asia","France Central","North Europe","West
US 2","East US","UK South","Japan East","Japan West","East Asia","North Central
US","South Central US","Canada East","Korea Central","Brazil South","UK West","Canada
@@ -2481,24 +2957,25 @@ interactions:
Southeast","Korea South","West India","South Africa North","UAE North","Australia
Central","Switzerland North","Germany West Central","Norway East","Australia
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"hostGroups/hosts","locations":["Central
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"hostGroups/hosts","locations":["Central
US","East US 2","West Europe","Southeast Asia","France Central","North Europe","West
US 2","East US","UK South","Japan East","Japan West","East Asia","North Central
US","South Central US","Canada East","Korea Central","Brazil South","UK West","Canada
@@ -2506,51 +2983,76 @@ interactions:
Southeast","Korea South","West India","South Africa North","UAE North","Australia
Central","Switzerland North","Germany West Central","Norway East","Australia
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"sharedVMExtensions","locations":["East
- US 2 EUAP","Central US EUAP","Southeast Asia","East US 2","Central US","West
- Europe","East US","North Central US","South Central US","West US","North Europe","East
- Asia","Brazil South","West US 2","West Central US","UK West","UK South","Japan
- East","Japan West","Canada Central","Canada East","Central India","South India","Australia
- East","Australia Southeast","Korea Central","Korea South","West India","France
- Central","South Africa North","UAE North","Australia Central","Switzerland
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"sharedVMExtensions","locations":["East
+ US 2 EUAP","Central US EUAP","East US STG","Southeast Asia","East US 2","Central
+ US","West Europe","East US","North Central US","South Central US","West US","North
+ Europe","East Asia","Brazil South","West US 2","West Central US","UK West","UK
+ South","Japan East","Japan West","Canada Central","Canada East","Central India","South
+ India","Australia East","Australia Southeast","Korea Central","Korea South","West
+ India","France Central","South Africa North","UAE North","Australia Central","Switzerland
North","Germany West Central","Norway East","Jio India West","West US 3","Sweden
- Central","Qatar Central","Poland Central","Italy North","Israel Central"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
+ Central","Qatar Central","Poland Central","Italy North","Israel Central","Spain
+ Central","Mexico Central","New Zealand North"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"sharedVMExtensions/versions","locations":["East
- US 2 EUAP","Central US EUAP","Southeast Asia","East US 2","Central US","West
- Europe","East US","North Central US","South Central US","West US","North Europe","East
- Asia","Brazil South","West US 2","West Central US","UK West","UK South","Japan
- East","Japan West","Canada Central","Canada East","Central India","South India","Australia
- East","Australia Southeast","Korea Central","Korea South","West India","France
- Central","South Africa North","UAE North","Australia Central","Switzerland
+ US 2 EUAP","Central US EUAP","East US STG","Southeast Asia","East US 2","Central
+ US","West Europe","East US","North Central US","South Central US","West US","North
+ Europe","East Asia","Brazil South","West US 2","West Central US","UK West","UK
+ South","Japan East","Japan West","Canada Central","Canada East","Central India","South
+ India","Australia East","Australia Southeast","Korea Central","Korea South","West
+ India","France Central","South Africa North","UAE North","Australia Central","Switzerland
North","Germany West Central","Norway East","Jio India West","West US 3","Sweden
- Central","Qatar Central","Poland Central","Italy North","Israel Central"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
+ Central","Qatar Central","Poland Central","Italy North","Israel Central","Spain
+ Central","Mexico Central","New Zealand North"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"galleries/inVMAccessControlProfiles","locations":["East
+ US 2 EUAP","Central US EUAP","East US STG","West Central US","South Central
+ US","East US 2","Southeast Asia","West Europe","West US","East US","Canada
+ Central","North Europe","North Central US","Brazil South","UK West","West
+ India","East Asia","Australia East","Japan East","Korea South","West US 2","Canada
+ East","UK South","Central India","South India","Australia Southeast","Japan
+ West","Korea Central","France Central","Central US","Australia Central","South
+ Africa North","UAE North","Switzerland North","Germany West Central","Norway
+ East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North"],"apiVersions":["2024-03-03"],"defaultApiVersion":"2024-03-03","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"galleries/inVMAccessControlProfiles/versions","locations":["East
+ US 2 EUAP","Central US EUAP","East US STG","West Central US","South Central
+ US","East US 2","Southeast Asia","West Europe","West US","East US","Canada
+ Central","North Europe","North Central US","Brazil South","UK West","West
+ India","East Asia","Australia East","Japan East","Korea South","West US 2","Canada
+ East","UK South","Central India","South India","Australia Southeast","Japan
+ West","Korea Central","France Central","Central US","Australia Central","South
+ Africa North","UAE North","Switzerland North","Germany West Central","Norway
+ East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North"],"apiVersions":["2024-03-03"],"defaultApiVersion":"2024-03-03","capabilities":"SupportsTags,
SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '90590'
+ - '102265'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:33:40 GMT
+ - Tue, 11 Feb 2025 05:55:44 GMT
expires:
- '-1'
pragma:
@@ -2561,8 +3063,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 02A309C5A2A3494484E0F187F3846181 Ref B: MAA201060515019 Ref C: 2023-12-06T08:33:40Z'
+ - 'Ref A: 127A291CAC0748218CB76C227A94131F Ref B: SEL221051804023 Ref C: 2025-02-11T05:55:43Z'
status:
code: 200
message: OK
@@ -2578,29 +3082,29 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg
+ - -g -n --image --admin-username --ssh-key-value --ppg --nsg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg?api-version=2023-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg?api-version=2024-11-01
response:
body:
string: "{\r\n \"name\": \"myppg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\",\r\n \"virtualMachines\": [\r\n {\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_JLVCO4GEYM4V7S73EGJL6U6X455MQ4Q7EGET2QM476AB5BMZUYXFGR/providers/Microsoft.Compute/virtualMachines/VM1\"\
+ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_WVJLP2SQJR7ZWMXXVMTYG2L26XPSBBOISBG7AARJMIGH5HDBV4EA5P/providers/Microsoft.Compute/virtualMachines/VM1\"\
\r\n }\r\n ],\r\n \"virtualMachineScaleSets\": [],\r\n \"availabilitySets\"\
: []\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '683'
+ - '668'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:33:42 GMT
+ - Tue, 11 Feb 2025 05:55:44 GMT
expires:
- '-1'
pragma:
@@ -2611,10 +3115,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/HighCostGet3Min;137,Microsoft.Compute/HighCostGet30Min;696
+ - Microsoft.Compute/HighCostGetSubscriptionMaximum;899
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 27828DA54C7C4204B532367E1E55FA53 Ref B: MAA201060516051 Ref C: 2023-12-06T08:33:41Z'
+ - 'Ref A: A7B62277F38547CC9DEB29C166C58CB0 Ref B: SEL221051504021 Ref C: 2025-02-11T05:55:45Z'
status:
code: 200
message: ''
@@ -2639,14 +3147,15 @@ interactions:
"virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage",
"caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference":
{"publisher": "Debian", "offer": "debian-10", "sku": "10", "version": "latest"}},
- "osProfile": {"computerNamePrefix": "vmss105f6", "adminUsername": "debian",
+ "osProfile": {"computerNamePrefix": "vmss14fbd", "adminUsername": "debian",
"linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys":
[{"path": "/home/debian/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==
- aaa@foo.com\n"}]}}}, "networkProfile": {"networkInterfaceConfigurations":
- [{"name": "vmss105f6Nic", "properties": {"ipConfigurations": [{"name": "vmss105f6IPConfig",
+ test@example.com\n"}]}}}, "networkProfile": {"networkInterfaceConfigurations":
+ [{"name": "vmss14fbdNic", "properties": {"ipConfigurations": [{"name": "vmss14fbdIPConfig",
"properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},
"loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],
"loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}],
+ "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1"},
"primary": "true"}}]}}, "orchestrationMode": "Uniform"}, "sku": {"name": "Standard_DS1_v2",
"capacity": 2}}], "outputs": {"VMSS": {"type": "object", "value": "[reference(resourceId(''Microsoft.Compute/virtualMachineScaleSets'',
''vmss1''),providers(''Microsoft.Compute'', ''virtualMachineScaleSets'').apiVersions[0])]"}}},
@@ -2661,21 +3170,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '4137'
+ - '4322'
Content-Type:
- application/json
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg
+ - -g -n --image --admin-username --ssh-key-value --ppg --nsg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/vmss_deploy_Aonp20yvTou5eEqeYF1vJ9dqMOnFoMc0","name":"vmss_deploy_Aonp20yvTou5eEqeYF1vJ9dqMOnFoMc0","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10802854251727518625","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-12-06T08:33:52.3493329Z","duration":"PT0.0001315S","correlationId":"59acdee3-ff9f-4f32-ada4-ba40b2eb9bba","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/vmss_deploy_I12CSbr5Cp2MqdDvUw5o71s68T014tlo","name":"vmss_deploy_I12CSbr5Cp2MqdDvUw5o71s68T014tlo","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12631477372827326524","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-02-11T05:55:54.3596517Z","duration":"PT0.0003263S","correlationId":"7410445c-528e-4089-8880-b08c573c1871","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/vmss_deploy_Aonp20yvTou5eEqeYF1vJ9dqMOnFoMc0/operationStatuses/08584997552563519790?api-version=2019-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/vmss_deploy_I12CSbr5Cp2MqdDvUw5o71s68T014tlo/operationStatuses/08584623535345598507?api-version=2019-10-01&t=638748501587366262&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=RruWxx50SIjJIVE25UGIdJBQu1543hiN5bRUsg-jWRbFwL3inZYa4Ly2bT4KJ_pIUexwGfM7XFHFhbgGRq8hqhVK0N1WD2-VVIIZEUmhMW6OX7TAN8omWHoIwjrS5O9KBKnsBTD8xxaf6ty2En0DssRhrzhjHZ7OxmrD67W56tT2Lt3GIwIgBGFXtj__-UiVTgVOBKNg5kWTtEcqTxke8RRCKHOY5KZaRZZmRgrmsxW9JG0VwA9ZZrQGksxQexYj52UKPCzLTSpa98ApVN2HB1w3DkuEqIq6TDbr3u-Yvzo9RlGhQ4rla3lGCgRJjArFOPqF9pbRBoW7dQof2-y79w&h=n9vfik9aIKSEwc_UhmY0DgmzFOYgBLjbjGviYCJQ9Wk
cache-control:
- no-cache
content-length:
@@ -2683,7 +3192,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:33:55 GMT
+ - Tue, 11 Feb 2025 05:55:58 GMT
expires:
- '-1'
pragma:
@@ -2694,10 +3203,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-deployment-engine-version:
+ - 1.224.0
+ x-ms-ratelimit-remaining-subscription-global-writes:
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '199'
x-msedge-ref:
- - 'Ref A: 9E8F3E3773FD44A89AD854C54A43780C Ref B: MAA201060516021 Ref C: 2023-12-06T08:33:43Z'
+ - 'Ref A: 8D533B8CAB1C4FC4B25B578C8A5753F9 Ref B: SEL221051802045 Ref C: 2025-02-11T05:55:45Z'
status:
code: 201
message: Created
@@ -2713,23 +3226,23 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg
+ - -g -n --image --admin-username --ssh-key-value --ppg --nsg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584997552563519790?api-version=2019-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584623535345598507?api-version=2019-10-01&t=638748501587366262&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=RruWxx50SIjJIVE25UGIdJBQu1543hiN5bRUsg-jWRbFwL3inZYa4Ly2bT4KJ_pIUexwGfM7XFHFhbgGRq8hqhVK0N1WD2-VVIIZEUmhMW6OX7TAN8omWHoIwjrS5O9KBKnsBTD8xxaf6ty2En0DssRhrzhjHZ7OxmrD67W56tT2Lt3GIwIgBGFXtj__-UiVTgVOBKNg5kWTtEcqTxke8RRCKHOY5KZaRZZmRgrmsxW9JG0VwA9ZZrQGksxQexYj52UKPCzLTSpa98ApVN2HB1w3DkuEqIq6TDbr3u-Yvzo9RlGhQ4rla3lGCgRJjArFOPqF9pbRBoW7dQof2-y79w&h=n9vfik9aIKSEwc_UhmY0DgmzFOYgBLjbjGviYCJQ9Wk
response:
body:
- string: '{"status":"Running"}'
+ string: '{"status":"Accepted"}'
headers:
cache-control:
- no-cache
content-length:
- - '20'
+ - '21'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:34:16 GMT
+ - Tue, 11 Feb 2025 05:55:59 GMT
expires:
- '-1'
pragma:
@@ -2740,8 +3253,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 94E2F74A39F34809A7FAC818AA4868A1 Ref B: TYO201100117017 Ref C: 2023-12-06T08:34:15Z'
+ - 'Ref A: A72CC9517F3741E19818AEA1D01335AD Ref B: SEL221051802045 Ref C: 2025-02-11T05:55:58Z'
status:
code: 200
message: OK
@@ -2757,11 +3272,11 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg
+ - -g -n --image --admin-username --ssh-key-value --ppg --nsg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584997552563519790?api-version=2019-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584623535345598507?api-version=2019-10-01&t=638748501587366262&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=RruWxx50SIjJIVE25UGIdJBQu1543hiN5bRUsg-jWRbFwL3inZYa4Ly2bT4KJ_pIUexwGfM7XFHFhbgGRq8hqhVK0N1WD2-VVIIZEUmhMW6OX7TAN8omWHoIwjrS5O9KBKnsBTD8xxaf6ty2En0DssRhrzhjHZ7OxmrD67W56tT2Lt3GIwIgBGFXtj__-UiVTgVOBKNg5kWTtEcqTxke8RRCKHOY5KZaRZZmRgrmsxW9JG0VwA9ZZrQGksxQexYj52UKPCzLTSpa98ApVN2HB1w3DkuEqIq6TDbr3u-Yvzo9RlGhQ4rla3lGCgRJjArFOPqF9pbRBoW7dQof2-y79w&h=n9vfik9aIKSEwc_UhmY0DgmzFOYgBLjbjGviYCJQ9Wk
response:
body:
string: '{"status":"Running"}'
@@ -2773,7 +3288,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:34:47 GMT
+ - Tue, 11 Feb 2025 05:56:31 GMT
expires:
- '-1'
pragma:
@@ -2784,8 +3299,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 5C20DF824041479783728C102BFBA2AE Ref B: TYO201100117017 Ref C: 2023-12-06T08:34:46Z'
+ - 'Ref A: ADE3A99E5547419BA39819BA7B0D4F00 Ref B: SEL221051802045 Ref C: 2025-02-11T05:56:30Z'
status:
code: 200
message: OK
@@ -2801,11 +3318,11 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg
+ - -g -n --image --admin-username --ssh-key-value --ppg --nsg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584997552563519790?api-version=2019-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584623535345598507?api-version=2019-10-01&t=638748501587366262&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=RruWxx50SIjJIVE25UGIdJBQu1543hiN5bRUsg-jWRbFwL3inZYa4Ly2bT4KJ_pIUexwGfM7XFHFhbgGRq8hqhVK0N1WD2-VVIIZEUmhMW6OX7TAN8omWHoIwjrS5O9KBKnsBTD8xxaf6ty2En0DssRhrzhjHZ7OxmrD67W56tT2Lt3GIwIgBGFXtj__-UiVTgVOBKNg5kWTtEcqTxke8RRCKHOY5KZaRZZmRgrmsxW9JG0VwA9ZZrQGksxQexYj52UKPCzLTSpa98ApVN2HB1w3DkuEqIq6TDbr3u-Yvzo9RlGhQ4rla3lGCgRJjArFOPqF9pbRBoW7dQof2-y79w&h=n9vfik9aIKSEwc_UhmY0DgmzFOYgBLjbjGviYCJQ9Wk
response:
body:
string: '{"status":"Succeeded"}'
@@ -2817,7 +3334,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:35:17 GMT
+ - Tue, 11 Feb 2025 05:57:02 GMT
expires:
- '-1'
pragma:
@@ -2828,8 +3345,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: C4B5D71C0CEC49EDA7D2B289D516E402 Ref B: TYO201100117017 Ref C: 2023-12-06T08:35:17Z'
+ - 'Ref A: DB06FB0010B64704B8B6CA10C2F5AE73 Ref B: SEL221051802045 Ref C: 2025-02-11T05:57:01Z'
status:
code: 200
message: OK
@@ -2845,25 +3364,25 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg
+ - -g -n --image --admin-username --ssh-key-value --ppg --nsg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/vmss_deploy_Aonp20yvTou5eEqeYF1vJ9dqMOnFoMc0","name":"vmss_deploy_Aonp20yvTou5eEqeYF1vJ9dqMOnFoMc0","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10802854251727518625","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-12-06T08:34:52.8489344Z","duration":"PT1M0.499733S","correlationId":"59acdee3-ff9f-4f32-ada4-ba40b2eb9bba","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"proximityPlacementGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_JLVCO4GEYM4V7S73EGJL6U6X455MQ4Q7EGET2QM476AB5BMZUYXFGR/providers/Microsoft.Compute/proximityPlacementGroups/myppg"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss105f6","adminUsername":"debian","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/debian/.ssh/authorized_keys","keyData":"ssh-rsa
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/vmss_deploy_I12CSbr5Cp2MqdDvUw5o71s68T014tlo","name":"vmss_deploy_I12CSbr5Cp2MqdDvUw5o71s68T014tlo","type":"Microsoft.Resources/deployments","properties":{"templateHash":"12631477372827326524","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-02-11T05:56:41.7768251Z","duration":"PT47.4174997S","correlationId":"7410445c-528e-4089-8880-b08c573c1871","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"proximityPlacementGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_WVJLP2SQJR7ZWMXXVMTYG2L26XPSBBOISBG7AARJMIGH5HDBV4EA5P/providers/Microsoft.Compute/proximityPlacementGroups/myppg"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss14fbd","adminUsername":"debian","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/debian/.ssh/authorized_keys","keyData":"ssh-rsa
AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==
- aaa@foo.com\n"}]},"provisionVMAgent":true,"enableVMAgentPlatformUpdates":false},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-10","sku":"10","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss105f6Nic","properties":{"primary":true,"disableTcpStateTracking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss105f6IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]},"timeCreated":"2023-12-06T08:34:14.9924731+00:00"},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"f4558e9d-12e7-44b2-bf63-22f08a36fd48","timeCreated":"2023-12-06T08:34:14.9924731+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"}]}}'
+ test@example.com\n"}]},"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-10","sku":"10","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss14fbdNic","properties":{"primary":true,"disableTcpStateTracking":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1"},"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss14fbdIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]},"timeCreated":"2025-02-11T05:56:09.0089524+00:00"},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"773121d6-16df-4d5f-ba22-6846da57fe53","platformFaultDomainCount":5,"timeCreated":"2025-02-11T05:56:09.0089524+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"}]}}'
headers:
cache-control:
- no-cache
content-length:
- - '5254'
+ - '5428'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:35:18 GMT
+ - Tue, 11 Feb 2025 05:57:03 GMT
expires:
- '-1'
pragma:
@@ -2874,8 +3393,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 68224A07D9304B0683A7032B60532C31 Ref B: TYO201100117017 Ref C: 2023-12-06T08:35:18Z'
+ - 'Ref A: 1F839E69235943CEB5B5C099491E0992 Ref B: SEL221051802045 Ref C: 2025-02-11T05:57:02Z'
status:
code: 200
message: OK
@@ -2893,7 +3414,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-06-01
response:
@@ -2904,14 +3425,14 @@ interactions:
,\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\
: {\r\n \"singlePlacementGroup\": true,\r\n \"orchestrationMode\": \"\
Uniform\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\n \
- \ },\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_JLVCO4GEYM4V7S73EGJL6U6X455MQ4Q7EGET2QM476AB5BMZUYXFGR/providers/Microsoft.Compute/proximityPlacementGroups/myppg\"\
+ \ },\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_WVJLP2SQJR7ZWMXXVMTYG2L26XPSBBOISBG7AARJMIGH5HDBV4EA5P/providers/Microsoft.Compute/proximityPlacementGroups/myppg\"\
\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\
- \n \"computerNamePrefix\": \"vmss105f6\",\r\n \"adminUsername\"\
+ \n \"computerNamePrefix\": \"vmss14fbd\",\r\n \"adminUsername\"\
: \"debian\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\
: true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n \
\ {\r\n \"path\": \"/home/debian/.ssh/authorized_keys\"\
,\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\
- \ aaa@foo.com\\n\"\r\n }\r\n ]\r\n },\r\
+ \ test@example.com\\n\"\r\n }\r\n ]\r\n },\r\
\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\"\
: [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\"\
: true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\
@@ -2922,26 +3443,26 @@ interactions:
: {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\"\
,\r\n \"sku\": \"10\",\r\n \"version\": \"latest\"\r\n \
\ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\
- :[{\"name\":\"vmss105f6Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\
- :false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"\
- ipConfigurations\":[{\"name\":\"vmss105f6IPConfig\",\"properties\":{\"subnet\"\
- :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"\
+ :[{\"name\":\"vmss14fbdNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\
+ :false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1\"\
+ },\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\
+ :[{\"name\":\"vmss14fbdIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"\
},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\
:[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"\
}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"\
}]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\":\
- \ false,\r\n \"uniqueId\": \"f4558e9d-12e7-44b2-bf63-22f08a36fd48\"\r\n\
- \ }\r\n}"
+ \ false,\r\n \"uniqueId\": \"773121d6-16df-4d5f-ba22-6846da57fe53\",\r\n\
+ \ \"platformFaultDomainCount\": 5\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '3695'
+ - '3913'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:35:20 GMT
+ - Tue, 11 Feb 2025 05:57:04 GMT
expires:
- '-1'
pragma:
@@ -2952,10 +3473,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2390,Microsoft.Compute/GetVMScaleSetResource;30
+ - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2396,Microsoft.Compute/GetVMScaleSetResource;32
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 4DEB6261FEE145139765C3780B6E1FE2 Ref B: TYO201100116049 Ref C: 2023-12-06T08:35:19Z'
+ - 'Ref A: 61E9DFF60B6D4CA6B5AFDFA7AACFF05D Ref B: SEL221051504053 Ref C: 2025-02-11T05:57:04Z'
status:
code: 200
message: ''
@@ -2973,21 +3498,21 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001?api-version=2019-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001","name":"cli_test_ppg_vm_vmss_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_with_related_resources","date":"2023-12-06T08:31:16Z","module":"vm","DateCreated":"2023-12-06T08:33:17Z","Creator":"aaa@foo.com"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001","name":"cli_test_ppg_vm_vmss_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_with_related_resources","date":"2025-02-11T05:51:37Z","module":"vm","DateCreated":"2025-02-11T05:51:45Z","Creator":"zhuyan@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
content-length:
- - '463'
+ - '457'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:35:20 GMT
+ - Tue, 11 Feb 2025 05:57:05 GMT
expires:
- '-1'
pragma:
@@ -2998,8 +3523,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 764D68B565D04CEABD786D97123592B5 Ref B: TYO201100115039 Ref C: 2023-12-06T08:35:20Z'
+ - 'Ref A: 0FADCBE5590B4821B73421347FE0C5E1 Ref B: SEL221051801051 Ref C: 2025-02-11T05:57:05Z'
status:
code: 200
message: OK
@@ -3017,12 +3544,12 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute?api-version=2019-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"184909ca-69f1-4368-a6a7-c558ee6eb0bd","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"5e5e43d4-54da-4211-86a4-c6e7f3715801","roleDefinitionId":"ffcd6e5b-8772-457d-bb17-89703c03428f"},{"applicationId":"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"},{"applicationId":"372140e0-b3b7-4226-8ef9-d57986796201","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"},{"applicationId":"579d9c9d-4c83-4efc-8124-7eba65ed3356","roleDefinitionId":"8c99c4ce-d744-4597-a2f0-0a0044d67560"},{"applicationId":"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab","roleDefinitionId":"6efa92ca-56b6-40af-a468-5e3d2b5232f0"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute","namespace":"Microsoft.Compute","authorizations":[{"applicationId":"60e6cd67-9c8c-4951-9b3c-23c25a2169af","roleDefinitionId":"e4770acb-272e-4dc8-87f3-12f44a612224"},{"applicationId":"a303894e-f1d8-4a37-bf10-67aa654a0596","roleDefinitionId":"903ac751-8ad5-4e5a-bfc2-5e49f450a241"},{"applicationId":"a8b6bf88-1d1a-4626-b040-9a729ea93c65","roleDefinitionId":"274dd4a6-9687-462d-9bee-4f973b07ce46"},{"applicationId":"184909ca-69f1-4368-a6a7-c558ee6eb0bd","roleDefinitionId":"45c8267c-80ba-4b96-9a43-115b8f49fccd"},{"applicationId":"5e5e43d4-54da-4211-86a4-c6e7f3715801","roleDefinitionId":"ffcd6e5b-8772-457d-bb17-89703c03428f"},{"applicationId":"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"},{"applicationId":"372140e0-b3b7-4226-8ef9-d57986796201","roleDefinitionId":"cb17cddc-dbac-4ae0-ae79-8db34eddfca0"},{"applicationId":"579d9c9d-4c83-4efc-8124-7eba65ed3356","roleDefinitionId":"8c99c4ce-d744-4597-a2f0-0a0044d67560"},{"applicationId":"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab","roleDefinitionId":"6efa92ca-56b6-40af-a468-5e3d2b5232f0"}],"resourceTypes":[{"resourceType":"availabilitySets","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3030,7 +3557,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualMachines","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -3039,23 +3567,25 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"virtualMachines/extensions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
@@ -3065,7 +3595,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualMachineScaleSets","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -3074,23 +3605,25 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"virtualMachineScaleSets/extensions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
@@ -3100,7 +3633,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2015-06-15","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2015-06-15","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3108,7 +3642,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/extensions","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/extensions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3116,7 +3651,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3124,7 +3660,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3132,7 +3669,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3140,7 +3678,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/operations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3148,7 +3687,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/vmSizes","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/vmSizes","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3156,7 +3696,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/runCommands","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/runCommands","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3164,7 +3705,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachines","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachines","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3172,7 +3714,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachineScaleSets","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachineScaleSets","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3180,7 +3723,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/publishers","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/publishers","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3188,7 +3732,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"operations","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"operations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3196,7 +3741,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"None"},{"resourceType":"virtualMachines/runCommands","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"None"},{"resourceType":"virtualMachines/runCommands","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3204,7 +3750,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2022-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2023-09-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualMachineScaleSets/applications","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -3213,7 +3760,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"virtualMachines/VMApplications","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"virtualMachines/VMApplications","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3221,8 +3769,9 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2022-03-01","capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"locations/edgeZones","locations":[],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/vmimages","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2023-09-01","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"locations/edgeZones","locations":[],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/vmimages","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3230,7 +3779,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/publishers","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/publishers","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3238,7 +3788,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"restorePointCollections","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"restorePointCollections","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -3246,7 +3797,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"defaultApiVersion":"2022-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"defaultApiVersion":"2023-09-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"restorePointCollections/restorePoints","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -3255,7 +3807,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"capabilities":"None"},{"resourceType":"proximityPlacementGroups","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"capabilities":"None"},{"resourceType":"proximityPlacementGroups","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3263,23 +3816,25 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":[]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":[]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"sshPublicKeys","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -3288,7 +3843,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2022-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2023-09-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"capacityReservationGroups","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -3297,24 +3853,25 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"capacityReservationGroups/capacityReservations","locations":["East
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"capacityReservationGroups/capacityReservations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3322,24 +3879,25 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"virtualMachines/metricDefinitions","locations":["East
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"virtualMachines/metricDefinitions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3347,7 +3905,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Israel
- Central","Poland Central","Italy North","East US 2 EUAP","Central US EUAP"],"apiVersions":["2014-04-01"],"capabilities":"None"},{"resourceType":"locations/spotEvictionRates","locations":["East
+ Central","Poland Central","Italy North","Mexico Central","Spain Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2014-04-01"],"capabilities":"None"},{"resourceType":"locations/spotEvictionRates","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3355,7 +3914,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"locations/spotPriceHistory","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"locations/spotPriceHistory","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3363,7 +3923,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"locations/recommendations","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"locations/recommendations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3371,7 +3932,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"locations/sharedGalleries","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"locations/sharedGalleries","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3379,7 +3941,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/communityGalleries","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/communityGalleries","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3387,27 +3950,28 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"sharedVMImages","locations":["West
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"sharedVMImages","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan
West","Korea Central","France Central","Central US","Australia Central","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2017-10-15-preview"],"defaultApiVersion":"2017-10-15-preview","capabilities":"SupportsTags,
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2017-10-15-preview"],"defaultApiVersion":"2017-10-15-preview","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"sharedVMImages/versions","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan
West","Korea Central","France Central","Central US","Australia Central","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2017-10-15-preview"],"defaultApiVersion":"2017-10-15-preview","capabilities":"SupportsTags,
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2017-10-15-preview"],"defaultApiVersion":"2017-10-15-preview","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/artifactPublishers","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan
West","Korea Central","France Central","Central US","Australia Central","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2017-10-15-preview"],"capabilities":"None"},{"resourceType":"locations/capsoperations","locations":["West
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2017-10-15-preview"],"capabilities":"None"},{"resourceType":"locations/capsoperations","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
@@ -3415,7 +3979,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01","2017-10-15-preview"],"capabilities":"None"},{"resourceType":"galleries","locations":["West
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01","2017-10-15-preview"],"capabilities":"None"},{"resourceType":"galleries","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
@@ -3423,16 +3988,18 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2018-06-01","capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"galleries/images","locations":["West Central
- US","South Central US","East US 2","Southeast Asia","West Europe","West US","East
- US","Canada Central","North Europe","North Central US","Brazil South","UK
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2023-07-03","capabilities":"SystemAssignedResourceIdentity,
+ SupportsTags, SupportsLocation"},{"resourceType":"galleries/images","locations":["West
+ Central US","South Central US","East US 2","Southeast Asia","West Europe","West
+ US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
US 2","Canada East","UK South","Central India","South India","Australia Southeast","Japan
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2018-06-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"galleries/images/versions","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -3441,7 +4008,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2018-06-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/galleries","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -3450,7 +4018,9 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2018-06-01","capabilities":"None"},{"resourceType":"galleries/applications","locations":["West
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"None"},{"resourceType":"payloadGroups","locations":["South
+ Central US","West Europe"],"apiVersions":["2024-03-03","2023-07-03"],"capabilities":"None"},{"resourceType":"galleries/applications","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
@@ -3458,7 +4028,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2019-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"galleries/applications/versions","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -3467,7 +4038,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2019-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"disks","locations":["Southeast Asia","East
US 2","Central US","West Europe","East US","North Central US","South Central
US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -3476,23 +4048,25 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"snapshots","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -3501,7 +4075,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/diskoperations","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -3510,7 +4085,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"diskEncryptionSets","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"diskEncryptionSets","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -3518,7 +4094,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01"],"defaultApiVersion":"2022-03-02","capabilities":"SystemAssignedResourceIdentity,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01"],"defaultApiVersion":"2022-03-02","capabilities":"SystemAssignedResourceIdentity,
SupportsTags, SupportsLocation"},{"resourceType":"diskAccesses","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -3527,7 +4104,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01"],"defaultApiVersion":"2022-03-02","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01"],"defaultApiVersion":"2022-03-02","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"restorePointCollections/restorePoints/diskRestorePoints","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -3536,7 +4114,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30"],"defaultApiVersion":"2022-03-02","capabilities":"None"},{"resourceType":"virtualMachineScaleSets/disks","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30"],"defaultApiVersion":"2022-03-02","capabilities":"None"},{"resourceType":"virtualMachineScaleSets/disks","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3544,7 +4123,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"cloudServices","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"cloudServices","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -3552,23 +4132,25 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"cloudServices/roles","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -3577,7 +4159,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/roleInstances","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/roleInstances","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -3585,7 +4168,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/csoperations","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/csoperations","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -3593,7 +4177,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/cloudServiceOsVersions","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/cloudServiceOsVersions","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -3601,7 +4186,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/cloudServiceOsFamilies","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/cloudServiceOsFamilies","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -3609,7 +4195,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/networkInterfaces","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/networkInterfaces","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -3617,7 +4204,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/roleInstances/networkInterfaces","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/roleInstances/networkInterfaces","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -3625,7 +4213,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/publicIPAddresses","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/publicIPAddresses","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -3633,15 +4222,18 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["East
- US","East US 2","West US","Central US","North Central US","South Central US","North
- Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
- East","Australia Southeast","Australia Central","Brazil South","South India","Central
- India","West India","Canada Central","Canada East","West US 2","West Central
- US","UK South","UK West","Korea Central","Korea South","France Central","South
- Africa North","UAE North","Switzerland North","Germany West Central","Norway
- East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"images","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["East
+ US","West US","Central US","North Central US","South Central US","Southeast
+ Asia","Japan East","Japan West","Australia East","Australia Southeast","Australia
+ Central","Brazil South","South India","Central India","West India","Canada
+ Central","Canada East","West US 2","UK West","Korea Central","Korea South","France
+ Central","South Africa North","UAE North","Switzerland North","Germany West
+ Central","Norway East","Jio India West","West US 3","Sweden Central","Qatar
+ Central","Poland Central","Italy North","Israel Central","Spain Central","Mexico
+ Central","New Zealand North","West Central US","East US 2","West Europe","North
+ Europe","UK South","East Asia","East US 2 EUAP","Central US EUAP","East US
+ STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"images","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -3649,24 +4241,53 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/diagnostics","locations":["West
Central US","Southeast Asia","East US 2","East US","South Central US","West
Europe","North Europe","West US 2","UK South","Australia East","South India","Central
India","West India","Korea Central","Korea South","Jio India West","Japan
- West","Japan East","East Asia","Canada Central","Canada East","South Africa
- North","Central US","West US 3","West US","UK West","France Central","UAE
- North","Australia Central","Australia Southeast","Switzerland North","Germany
- West Central","Norway East","North Central US","Brazil South","Sweden Central","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview"],"defaultApiVersion":"2021-06-01-preview","capabilities":"None"},{"resourceType":"locations/diagnosticOperations","locations":["West
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/diagnosticOperations","locations":["West
+ Central US","Southeast Asia","East US 2","East US","South Central US","West
+ Europe","North Europe","West US 2","UK South","Australia East","South India","Central
+ India","West India","Korea Central","Korea South","Jio India West","Japan
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/placementScores","locations":["West
+ Central US","Southeast Asia","East US 2","East US","South Central US","West
+ Europe","North Europe","West US 2","UK South","Australia East","South India","Central
+ India","West India","Korea Central","Korea South","Jio India West","Japan
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/placementRecommendations","locations":["West
Central US","Southeast Asia","East US 2","East US","South Central US","West
Europe","North Europe","West US 2","UK South","Australia East","South India","Central
India","West India","Korea Central","Korea South","Jio India West","Japan
- West","Japan East","East Asia","Canada Central","Canada East","South Africa
- North","Central US","West US 3","West US","UK West","France Central","UAE
- North","Australia Central","Australia Southeast","Switzerland North","Germany
- West Central","Norway East","North Central US","Brazil South","Sweden Central","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview"],"defaultApiVersion":"2021-06-01-preview","capabilities":"None"},{"resourceType":"locations/logAnalytics","locations":["East
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/logAnalytics","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -3674,7 +4295,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01"],"capabilities":"None"},{"resourceType":"hostGroups","locations":["Central
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01"],"capabilities":"None"},{"resourceType":"hostGroups","locations":["Central
US","East US 2","West Europe","Southeast Asia","France Central","North Europe","West
US 2","East US","UK South","Japan East","Japan West","East Asia","North Central
US","South Central US","Canada East","Korea Central","Brazil South","UK West","Canada
@@ -3682,24 +4304,25 @@ interactions:
Southeast","Korea South","West India","South Africa North","UAE North","Australia
Central","Switzerland North","Germany West Central","Norway East","Australia
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"hostGroups/hosts","locations":["Central
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"hostGroups/hosts","locations":["Central
US","East US 2","West Europe","Southeast Asia","France Central","North Europe","West
US 2","East US","UK South","Japan East","Japan West","East Asia","North Central
US","South Central US","Canada East","Korea Central","Brazil South","UK West","Canada
@@ -3707,51 +4330,76 @@ interactions:
Southeast","Korea South","West India","South Africa North","UAE North","Australia
Central","Switzerland North","Germany West Central","Norway East","Australia
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
Asia","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"East
US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France
- Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Italy
- North","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Korea
- Central","zones":["2","3","1"]},{"location":"North Central US","zones":[]},{"location":"North
+ Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
+ Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
+ East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
- Asia","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US","zones":[]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
- US 3","zones":["2","3","1"]},{"location":"Israel Central","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"sharedVMExtensions","locations":["East
- US 2 EUAP","Central US EUAP","Southeast Asia","East US 2","Central US","West
- Europe","East US","North Central US","South Central US","West US","North Europe","East
- Asia","Brazil South","West US 2","West Central US","UK West","UK South","Japan
- East","Japan West","Canada Central","Canada East","Central India","South India","Australia
- East","Australia Southeast","Korea Central","Korea South","West India","France
- Central","South Africa North","UAE North","Australia Central","Switzerland
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"sharedVMExtensions","locations":["East
+ US 2 EUAP","Central US EUAP","East US STG","Southeast Asia","East US 2","Central
+ US","West Europe","East US","North Central US","South Central US","West US","North
+ Europe","East Asia","Brazil South","West US 2","West Central US","UK West","UK
+ South","Japan East","Japan West","Canada Central","Canada East","Central India","South
+ India","Australia East","Australia Southeast","Korea Central","Korea South","West
+ India","France Central","South Africa North","UAE North","Australia Central","Switzerland
North","Germany West Central","Norway East","Jio India West","West US 3","Sweden
- Central","Qatar Central","Poland Central","Italy North","Israel Central"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
+ Central","Qatar Central","Poland Central","Italy North","Israel Central","Spain
+ Central","Mexico Central","New Zealand North"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"sharedVMExtensions/versions","locations":["East
- US 2 EUAP","Central US EUAP","Southeast Asia","East US 2","Central US","West
- Europe","East US","North Central US","South Central US","West US","North Europe","East
- Asia","Brazil South","West US 2","West Central US","UK West","UK South","Japan
- East","Japan West","Canada Central","Canada East","Central India","South India","Australia
- East","Australia Southeast","Korea Central","Korea South","West India","France
- Central","South Africa North","UAE North","Australia Central","Switzerland
+ US 2 EUAP","Central US EUAP","East US STG","Southeast Asia","East US 2","Central
+ US","West Europe","East US","North Central US","South Central US","West US","North
+ Europe","East Asia","Brazil South","West US 2","West Central US","UK West","UK
+ South","Japan East","Japan West","Canada Central","Canada East","Central India","South
+ India","Australia East","Australia Southeast","Korea Central","Korea South","West
+ India","France Central","South Africa North","UAE North","Australia Central","Switzerland
North","Germany West Central","Norway East","Jio India West","West US 3","Sweden
- Central","Qatar Central","Poland Central","Italy North","Israel Central"],"apiVersions":["2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
+ Central","Qatar Central","Poland Central","Italy North","Israel Central","Spain
+ Central","Mexico Central","New Zealand North"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"galleries/inVMAccessControlProfiles","locations":["East
+ US 2 EUAP","Central US EUAP","East US STG","West Central US","South Central
+ US","East US 2","Southeast Asia","West Europe","West US","East US","Canada
+ Central","North Europe","North Central US","Brazil South","UK West","West
+ India","East Asia","Australia East","Japan East","Korea South","West US 2","Canada
+ East","UK South","Central India","South India","Australia Southeast","Japan
+ West","Korea Central","France Central","Central US","Australia Central","South
+ Africa North","UAE North","Switzerland North","Germany West Central","Norway
+ East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North"],"apiVersions":["2024-03-03"],"defaultApiVersion":"2024-03-03","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"galleries/inVMAccessControlProfiles/versions","locations":["East
+ US 2 EUAP","Central US EUAP","East US STG","West Central US","South Central
+ US","East US 2","Southeast Asia","West Europe","West US","East US","Canada
+ Central","North Europe","North Central US","Brazil South","UK West","West
+ India","East Asia","Australia East","Japan East","Korea South","West US 2","Canada
+ East","UK South","Central India","South India","Australia Southeast","Japan
+ West","Korea Central","France Central","Central US","Australia Central","South
+ Africa North","UAE North","Switzerland North","Germany West Central","Norway
+ East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North"],"apiVersions":["2024-03-03"],"defaultApiVersion":"2024-03-03","capabilities":"SupportsTags,
SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '90590'
+ - '102265'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:35:21 GMT
+ - Tue, 11 Feb 2025 05:57:05 GMT
expires:
- '-1'
pragma:
@@ -3762,8 +4410,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 820FD315FB9E447EBFA670F8C29A15B1 Ref B: TYO201100113021 Ref C: 2023-12-06T08:35:21Z'
+ - 'Ref A: 182E8A13059045558EE091BD0AE6CD1C Ref B: SEL221051803045 Ref C: 2025-02-11T05:57:05Z'
status:
code: 200
message: OK
@@ -3781,28 +4431,28 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg?api-version=2023-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg?api-version=2024-11-01
response:
body:
string: "{\r\n \"name\": \"myppg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\",\r\n \"virtualMachines\": [\r\n {\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_JLVCO4GEYM4V7S73EGJL6U6X455MQ4Q7EGET2QM476AB5BMZUYXFGR/providers/Microsoft.Compute/virtualMachines/VM1\"\
+ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_WVJLP2SQJR7ZWMXXVMTYG2L26XPSBBOISBG7AARJMIGH5HDBV4EA5P/providers/Microsoft.Compute/virtualMachines/VM1\"\
\r\n }\r\n ],\r\n \"virtualMachineScaleSets\": [\r\n {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_JLVCO4GEYM4V7S73EGJL6U6X455MQ4Q7EGET2QM476AB5BMZUYXFGR/providers/Microsoft.Compute/virtualMachineScaleSets/VMSS1\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_WVJLP2SQJR7ZWMXXVMTYG2L26XPSBBOISBG7AARJMIGH5HDBV4EA5P/providers/Microsoft.Compute/virtualMachineScaleSets/VMSS1\"\
\r\n }\r\n ],\r\n \"availabilitySets\": []\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '925'
+ - '910'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:35:22 GMT
+ - Tue, 11 Feb 2025 05:57:06 GMT
expires:
- '-1'
pragma:
@@ -3813,10 +4463,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/HighCostGet3Min;138,Microsoft.Compute/HighCostGet30Min;695
+ - Microsoft.Compute/HighCostGetSubscriptionMaximum;899
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: B00C77F049504487847AE3335A283ABF Ref B: TYO201100116053 Ref C: 2023-12-06T08:35:22Z'
+ - 'Ref A: C1E724B709134A1FB9A89B9B0F1E5BAA Ref B: SEL221051504037 Ref C: 2025-02-11T05:57:06Z'
status:
code: 200
message: ''
@@ -3843,23 +4497,23 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/av_set_deploy_T662FPwc3lZpQgzZQ06ZdA1HQw80heLh","name":"av_set_deploy_T662FPwc3lZpQgzZQ06ZdA1HQw80heLh","type":"Microsoft.Resources/deployments","properties":{"templateHash":"9405333857533656604","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2023-12-06T08:35:26.9152426Z","duration":"PT0.0001384S","correlationId":"4063fd64-ebbe-4308-949d-6927fafc3843","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]}]}],"dependencies":[]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/av_set_deploy_UkvMA30mdh2ccz6UNtMT760x3xXS0Pxs","name":"av_set_deploy_UkvMA30mdh2ccz6UNtMT760x3xXS0Pxs","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4859595697713495662","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-02-11T05:57:12.990874Z","duration":"PT0.000625S","correlationId":"134e89e4-2b67-4eab-a8e6-2f2ddefb0657","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]}]}],"dependencies":[]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/av_set_deploy_T662FPwc3lZpQgzZQ06ZdA1HQw80heLh/operationStatuses/08584997551599945830?api-version=2019-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/av_set_deploy_UkvMA30mdh2ccz6UNtMT760x3xXS0Pxs/operationStatuses/08584623534565571396?api-version=2019-10-01&t=638748502347183737&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=rJe1mi75lQUVRHlwlT59MHXCeX8OM9xLaZB5Ay6uwWlCSwNjJM-IgAeuGI74n-3YBv3DAV6LG0iG0Ao5bvd1s_islGzRNdV_VB-UiOnp0BMWn88RP8VMcBL9BbFtMOYMEdPLhQ8TU81fquOA1o5sWsWEM8QR1IGrxXEIO8YpUFWXI7JXuofe4BlN3qW72X6EvjfCrmEaZ_CeYGe5f-nR-w8S3BHF_dD7ifhOraSYSxrUpXFrg9GTxqRfkhQz_8o5E5LW77sxOwW8nbnVeS4PqAndaYlJal6xUl_WFvLtNknOnzluw3jI7Bp9jQieNpQnuQXmdR8tDzSg0vULvDP14w&h=vuozn-9FjXglMfrKaesfk79y-AdA7FqzJT0Y_qKg6bM
cache-control:
- no-cache
content-length:
- - '676'
+ - '674'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:35:27 GMT
+ - Tue, 11 Feb 2025 05:57:14 GMT
expires:
- '-1'
pragma:
@@ -3870,10 +4524,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-deployment-engine-version:
+ - 1.224.0
+ x-ms-ratelimit-remaining-subscription-global-writes:
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '1196'
+ - '199'
x-msedge-ref:
- - 'Ref A: D13050692928440E89774AF6535D4192 Ref B: TYO201100115009 Ref C: 2023-12-06T08:35:23Z'
+ - 'Ref A: 93DBBD5D7F6148F6B4E6E74AACBB4B0A Ref B: SEL221051801023 Ref C: 2025-02-11T05:57:07Z'
status:
code: 201
message: Created
@@ -3891,21 +4549,21 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584997551599945830?api-version=2019-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584623534565571396?api-version=2019-10-01&t=638748502347183737&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=rJe1mi75lQUVRHlwlT59MHXCeX8OM9xLaZB5Ay6uwWlCSwNjJM-IgAeuGI74n-3YBv3DAV6LG0iG0Ao5bvd1s_islGzRNdV_VB-UiOnp0BMWn88RP8VMcBL9BbFtMOYMEdPLhQ8TU81fquOA1o5sWsWEM8QR1IGrxXEIO8YpUFWXI7JXuofe4BlN3qW72X6EvjfCrmEaZ_CeYGe5f-nR-w8S3BHF_dD7ifhOraSYSxrUpXFrg9GTxqRfkhQz_8o5E5LW77sxOwW8nbnVeS4PqAndaYlJal6xUl_WFvLtNknOnzluw3jI7Bp9jQieNpQnuQXmdR8tDzSg0vULvDP14w&h=vuozn-9FjXglMfrKaesfk79y-AdA7FqzJT0Y_qKg6bM
response:
body:
- string: '{"status":"Running"}'
+ string: '{"status":"Accepted"}'
headers:
cache-control:
- no-cache
content-length:
- - '20'
+ - '21'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:35:27 GMT
+ - Tue, 11 Feb 2025 05:57:15 GMT
expires:
- '-1'
pragma:
@@ -3916,8 +4574,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: D4F45353804A47518419042AD1A80BEA Ref B: TYO201100115009 Ref C: 2023-12-06T08:35:27Z'
+ - 'Ref A: 0806EA565B5D45F78E722B197C63DA5E Ref B: SEL221051801023 Ref C: 2025-02-11T05:57:14Z'
status:
code: 200
message: OK
@@ -3935,9 +4595,9 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584997551599945830?api-version=2019-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584623534565571396?api-version=2019-10-01&t=638748502347183737&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=rJe1mi75lQUVRHlwlT59MHXCeX8OM9xLaZB5Ay6uwWlCSwNjJM-IgAeuGI74n-3YBv3DAV6LG0iG0Ao5bvd1s_islGzRNdV_VB-UiOnp0BMWn88RP8VMcBL9BbFtMOYMEdPLhQ8TU81fquOA1o5sWsWEM8QR1IGrxXEIO8YpUFWXI7JXuofe4BlN3qW72X6EvjfCrmEaZ_CeYGe5f-nR-w8S3BHF_dD7ifhOraSYSxrUpXFrg9GTxqRfkhQz_8o5E5LW77sxOwW8nbnVeS4PqAndaYlJal6xUl_WFvLtNknOnzluw3jI7Bp9jQieNpQnuQXmdR8tDzSg0vULvDP14w&h=vuozn-9FjXglMfrKaesfk79y-AdA7FqzJT0Y_qKg6bM
response:
body:
string: '{"status":"Succeeded"}'
@@ -3949,7 +4609,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:35:58 GMT
+ - Tue, 11 Feb 2025 05:57:45 GMT
expires:
- '-1'
pragma:
@@ -3960,8 +4620,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: F3D8ACA5818A466F8DC9B7D1B0CBDF06 Ref B: TYO201100115009 Ref C: 2023-12-06T08:35:58Z'
+ - 'Ref A: 4C4BB632C5D845E39102A1C983E3CC11 Ref B: SEL221051801023 Ref C: 2025-02-11T05:57:45Z'
status:
code: 200
message: OK
@@ -3979,12 +4641,12 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/av_set_deploy_T662FPwc3lZpQgzZQ06ZdA1HQw80heLh","name":"av_set_deploy_T662FPwc3lZpQgzZQ06ZdA1HQw80heLh","type":"Microsoft.Resources/deployments","properties":{"templateHash":"9405333857533656604","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2023-12-06T08:35:30.5359866Z","duration":"PT3.6208824S","correlationId":"4063fd64-ebbe-4308-949d-6927fafc3843","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]}]}],"dependencies":[],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/availabilitySets/avset1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/av_set_deploy_UkvMA30mdh2ccz6UNtMT760x3xXS0Pxs","name":"av_set_deploy_UkvMA30mdh2ccz6UNtMT760x3xXS0Pxs","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4859595697713495662","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-02-11T05:57:17.6493012Z","duration":"PT4.6590522S","correlationId":"134e89e4-2b67-4eab-a8e6-2f2ddefb0657","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]}]}],"dependencies":[],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/availabilitySets/avset1"}]}}'
headers:
cache-control:
- no-cache
@@ -3993,7 +4655,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:35:59 GMT
+ - Tue, 11 Feb 2025 05:57:46 GMT
expires:
- '-1'
pragma:
@@ -4004,8 +4666,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 216650E57DC344C2A18EFF44A57B9A0B Ref B: TYO201100115009 Ref C: 2023-12-06T08:35:58Z'
+ - 'Ref A: 34298E1BFB6A4068AE36762A6C6925DC Ref B: SEL221051801023 Ref C: 2025-02-11T05:57:46Z'
status:
code: 200
message: OK
@@ -4023,7 +4687,7 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/availabilitySets/avset1?api-version=2020-06-01
response:
@@ -4032,7 +4696,7 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\"\
: \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"platformUpdateDomainCount\"\
: 5,\r\n \"platformFaultDomainCount\": 2,\r\n \"virtualMachines\": [],\r\
- \n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_JLVCO4GEYM4V7S73EGJL6U6X455MQ4Q7EGET2QM476AB5BMZUYXFGR/providers/Microsoft.Compute/proximityPlacementGroups/myppg\"\
+ \n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_WVJLP2SQJR7ZWMXXVMTYG2L26XPSBBOISBG7AARJMIGH5HDBV4EA5P/providers/Microsoft.Compute/proximityPlacementGroups/myppg\"\
\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n}"
headers:
cache-control:
@@ -4042,7 +4706,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:36:02 GMT
+ - Tue, 11 Feb 2025 05:57:47 GMT
expires:
- '-1'
pragma:
@@ -4053,10 +4717,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31989
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: E37313150985475C96830F3661D2C172 Ref B: TYO201100116039 Ref C: 2023-12-06T08:36:02Z'
+ - 'Ref A: 9848DB819960408A85FF8D1371A712F6 Ref B: SEL221051503047 Ref C: 2025-02-11T05:57:47Z'
status:
code: 200
message: ''
@@ -4074,30 +4742,30 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - AZURECLI/2.55.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg?api-version=2022-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg?api-version=2020-06-01
response:
body:
string: "{\r\n \"name\": \"myppg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\",\r\n \"virtualMachines\": [\r\n {\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_JLVCO4GEYM4V7S73EGJL6U6X455MQ4Q7EGET2QM476AB5BMZUYXFGR/providers/Microsoft.Compute/virtualMachines/VM1\"\
+ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_WVJLP2SQJR7ZWMXXVMTYG2L26XPSBBOISBG7AARJMIGH5HDBV4EA5P/providers/Microsoft.Compute/virtualMachines/VM1\"\
\r\n }\r\n ],\r\n \"virtualMachineScaleSets\": [\r\n {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_JLVCO4GEYM4V7S73EGJL6U6X455MQ4Q7EGET2QM476AB5BMZUYXFGR/providers/Microsoft.Compute/virtualMachineScaleSets/VMSS1\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_WVJLP2SQJR7ZWMXXVMTYG2L26XPSBBOISBG7AARJMIGH5HDBV4EA5P/providers/Microsoft.Compute/virtualMachineScaleSets/VMSS1\"\
\r\n }\r\n ],\r\n \"availabilitySets\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_JLVCO4GEYM4V7S73EGJL6U6X455MQ4Q7EGET2QM476AB5BMZUYXFGR/providers/Microsoft.Compute/availabilitySets/AVSET1\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_WVJLP2SQJR7ZWMXXVMTYG2L26XPSBBOISBG7AARJMIGH5HDBV4EA5P/providers/Microsoft.Compute/availabilitySets/AVSET1\"\
\r\n }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1161'
+ - '1146'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:36:02 GMT
+ - Tue, 11 Feb 2025 05:57:48 GMT
expires:
- '-1'
pragma:
@@ -4108,10 +4776,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/HighCostGet3Min;137,Microsoft.Compute/HighCostGet30Min;694
+ - Microsoft.Compute/HighCostGetSubscriptionMaximum;898
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3748'
x-msedge-ref:
- - 'Ref A: DF24A944E24344BA96B4EBCBD54CD440 Ref B: TYO201100116009 Ref C: 2023-12-06T08:36:03Z'
+ - 'Ref A: 809FA70E91BB4083B4494D9A58370FA2 Ref B: SEL221051801027 Ref C: 2025-02-11T05:57:47Z'
status:
code: 200
message: ''
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_proximity_placement_group.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_proximity_placement_group.yaml
index e189143e262..51c4288b370 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_proximity_placement_group.yaml
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/recordings/test_proximity_placement_group.yaml
@@ -13,12 +13,12 @@ interactions:
ParameterSetName:
- -n -t -g
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_cmds_000001?api-version=2019-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001","name":"cli_test_ppg_cmds_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_proximity_placement_group","date":"2023-12-06T08:30:51Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001","name":"cli_test_ppg_cmds_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_proximity_placement_group","date":"2025-02-11T04:17:55Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -27,7 +27,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:30:50 GMT
+ - Tue, 11 Feb 2025 04:18:01 GMT
expires:
- '-1'
pragma:
@@ -38,14 +38,15 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 2BF2D3C4D5D248179B9EE7BF20BA460A Ref B: TYO201100115045 Ref C: 2023-12-06T08:30:50Z'
+ - 'Ref A: 8101D99CF89E48C7B5551572D561524C Ref B: SEL221051801035 Ref C: 2025-02-11T04:18:00Z'
status:
code: 200
message: OK
- request:
- body: '{"location": "westus", "tags": {}, "properties": {"proximityPlacementGroupType":
- "Standard"}}'
+ body: '{"location": "westus", "properties": {"proximityPlacementGroupType": "Standard"}}'
headers:
Accept:
- application/json
@@ -56,30 +57,30 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '93'
+ - '81'
Content-Type:
- application/json
ParameterSetName:
- -n -t -g
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1?api-version=2020-06-01
response:
body:
string: "{\r\n \"name\": \"my_ppg_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '361'
+ - '346'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:30:51 GMT
+ - Tue, 11 Feb 2025 04:18:04 GMT
expires:
- '-1'
pragma:
@@ -90,12 +91,16 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/PutDeletePPG3Min;99,Microsoft.Compute/PutDeletePPG30Min;499
+ - Microsoft.Compute/PutDeletePPGSubscriptionMaximum;119
+ x-ms-ratelimit-remaining-subscription-global-writes:
+ - '2998'
x-ms-ratelimit-remaining-subscription-writes:
- - '1195'
+ - '199'
x-msedge-ref:
- - 'Ref A: C368FE0C0EB84A1C88B82349593188A1 Ref B: TYO201100116027 Ref C: 2023-12-06T08:30:50Z'
+ - 'Ref A: 0A6EC9C0AB3C43739B39AC3BF2A250DB Ref B: SEL221051802053 Ref C: 2025-02-11T04:18:02Z'
status:
code: 201
message: ''
@@ -113,14 +118,14 @@ interactions:
ParameterSetName:
- -g -n --include-colocation-status
User-Agent:
- - AZURECLI/2.55.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1?includeColocationStatus=True&api-version=2022-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1?includeColocationStatus=True&api-version=2020-06-01
response:
body:
string: "{\r\n \"name\": \"my_ppg_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\",\r\n \"virtualMachines\": [],\r\n \"virtualMachineScaleSets\"\
: [],\r\n \"availabilitySets\": [],\r\n \"colocationStatus\": {\r\n\
\ \"code\": \"ColocationStatus/Aligned\",\r\n \"level\": \"Info\"\
@@ -130,11 +135,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '671'
+ - '656'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:30:52 GMT
+ - Tue, 11 Feb 2025 04:18:06 GMT
expires:
- '-1'
pragma:
@@ -145,10 +150,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/HighCostGet3Min;139,Microsoft.Compute/HighCostGet30Min;699
+ - Microsoft.Compute/HighCostGetSubscriptionMaximum;899
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: B10D4F47F1FB405C86D6D6F7E1192529 Ref B: TYO201100117027 Ref C: 2023-12-06T08:30:52Z'
+ - 'Ref A: EDF49DBDF2984C349979A0B9E6CBEAC3 Ref B: SEL221051805031 Ref C: 2025-02-11T04:18:05Z'
status:
code: 200
message: ''
@@ -166,21 +175,21 @@ interactions:
ParameterSetName:
- -n -t -g
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_cmds_000001?api-version=2019-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001","name":"cli_test_ppg_cmds_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_proximity_placement_group","date":"2023-12-06T08:30:51Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001","name":"cli_test_ppg_cmds_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_proximity_placement_group","date":"2025-02-11T04:17:55Z","module":"vm","DateCreated":"2025-02-11T04:18:01Z","Creator":"zhuyan@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
content-length:
- - '380'
+ - '450'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:30:52 GMT
+ - Tue, 11 Feb 2025 04:18:06 GMT
expires:
- '-1'
pragma:
@@ -191,14 +200,15 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 9A5DE9F8409944CF89662AA24463E05A Ref B: TYO201100114053 Ref C: 2023-12-06T08:30:53Z'
+ - 'Ref A: DCCDD306910D4F87967CA4652EA56BB0 Ref B: SEL221051503023 Ref C: 2025-02-11T04:18:06Z'
status:
code: 200
message: OK
- request:
- body: '{"location": "westus", "tags": {}, "properties": {"proximityPlacementGroupType":
- "Standard"}}'
+ body: '{"location": "westus", "properties": {"proximityPlacementGroupType": "Standard"}}'
headers:
Accept:
- application/json
@@ -209,30 +219,30 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '93'
+ - '81'
Content-Type:
- application/json
ParameterSetName:
- -n -t -g
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_2?api-version=2020-06-01
response:
body:
string: "{\r\n \"name\": \"my_ppg_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_2\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '361'
+ - '346'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:30:55 GMT
+ - Tue, 11 Feb 2025 04:18:10 GMT
expires:
- '-1'
pragma:
@@ -243,12 +253,16 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/PutDeletePPG3Min;98,Microsoft.Compute/PutDeletePPG30Min;498
+ - Microsoft.Compute/PutDeletePPGSubscriptionMaximum;118
+ x-ms-ratelimit-remaining-subscription-global-writes:
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '199'
x-msedge-ref:
- - 'Ref A: A54CA20622BC49739BF57E40FF89F417 Ref B: TYO201100117037 Ref C: 2023-12-06T08:30:53Z'
+ - 'Ref A: FE8F2B12BBE3462C8F06515A4F2C1927 Ref B: SEL221051804025 Ref C: 2025-02-11T04:18:07Z'
status:
code: 201
message: ''
@@ -266,21 +280,21 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_cmds_000001?api-version=2019-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001","name":"cli_test_ppg_cmds_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_proximity_placement_group","date":"2023-12-06T08:30:51Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001","name":"cli_test_ppg_cmds_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_proximity_placement_group","date":"2025-02-11T04:17:55Z","module":"vm","DateCreated":"2025-02-11T04:18:01Z","Creator":"zhuyan@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
content-length:
- - '380'
+ - '450'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:30:55 GMT
+ - Tue, 11 Feb 2025 04:18:10 GMT
expires:
- '-1'
pragma:
@@ -291,13 +305,15 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: B4C595EED11A43D69FC9D465CF29DF7F Ref B: TYO201100113033 Ref C: 2023-12-06T08:30:55Z'
+ - 'Ref A: 87E5DC0FB1F441E692BC0B836FC8BA5A Ref B: SEL221051503031 Ref C: 2025-02-11T04:18:10Z'
status:
code: 200
message: OK
- request:
- body: '{"location": "westus", "tags": {}}'
+ body: '{"location": "westus"}'
headers:
Accept:
- application/json
@@ -308,30 +324,30 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '34'
+ - '22'
Content-Type:
- application/json
ParameterSetName:
- -n -g
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_3?api-version=2020-06-01
response:
body:
string: "{\r\n \"name\": \"my_ppg_3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_3\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '361'
+ - '346'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:30:57 GMT
+ - Tue, 11 Feb 2025 04:18:12 GMT
expires:
- '-1'
pragma:
@@ -342,12 +358,16 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/PutDeletePPG3Min;97,Microsoft.Compute/PutDeletePPG30Min;497
+ - Microsoft.Compute/PutDeletePPGSubscriptionMaximum;117
+ x-ms-ratelimit-remaining-subscription-global-writes:
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '1195'
+ - '199'
x-msedge-ref:
- - 'Ref A: A418E398A05041FAAED30CE6BE7EB0A8 Ref B: TYO201100116019 Ref C: 2023-12-06T08:30:56Z'
+ - 'Ref A: AC42C5AECD3148AA83C81F9D34817DA6 Ref B: SEL221051503037 Ref C: 2025-02-11T04:18:11Z'
status:
code: 201
message: ''
@@ -365,39 +385,21 @@ interactions:
ParameterSetName:
- -g
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups?api-version=2020-06-01
response:
body:
- string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"my_ppg_1\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1\"\
- ,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \
- \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\"\
- : {\r\n \"proximityPlacementGroupType\": \"Standard\",\r\n \"\
- virtualMachines\": [],\r\n \"virtualMachineScaleSets\": [],\r\n \
- \ \"availabilitySets\": []\r\n }\r\n },\r\n {\r\n \"name\"\
- : \"my_ppg_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_2\"\
- ,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \
- \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\"\
- : {\r\n \"proximityPlacementGroupType\": \"Standard\",\r\n \"\
- virtualMachines\": [],\r\n \"virtualMachineScaleSets\": [],\r\n \
- \ \"availabilitySets\": []\r\n }\r\n },\r\n {\r\n \"name\"\
- : \"my_ppg_3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_3\"\
- ,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \
- \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\"\
- : {\r\n \"proximityPlacementGroupType\": \"Standard\",\r\n \"\
- virtualMachines\": [],\r\n \"virtualMachineScaleSets\": [],\r\n \
- \ \"availabilitySets\": []\r\n }\r\n }\r\n ]\r\n}"
+ string: '{"value":[{"name":"my_ppg_1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1","type":"Microsoft.Compute/proximityPlacementGroups","location":"westus","properties":{"proximityPlacementGroupType":"Standard","virtualMachines":[],"virtualMachineScaleSets":[],"availabilitySets":[]}},{"name":"my_ppg_2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_2","type":"Microsoft.Compute/proximityPlacementGroups","location":"westus","properties":{"proximityPlacementGroupType":"Standard","virtualMachines":[],"virtualMachineScaleSets":[],"availabilitySets":[]}},{"name":"my_ppg_3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_3","type":"Microsoft.Compute/proximityPlacementGroups","location":"westus","properties":{"proximityPlacementGroupType":"Standard","virtualMachines":[],"virtualMachineScaleSets":[],"availabilitySets":[]}}]}'
headers:
cache-control:
- no-cache
content-length:
- - '1549'
+ - '1154'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:30:57 GMT
+ - Tue, 11 Feb 2025 04:18:14 GMT
expires:
- '-1'
pragma:
@@ -408,13 +410,19 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
+ x-ms-original-request-ids:
+ - e76835bb-95ce-4430-b086-f6e4c6991261
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3999,Microsoft.Compute/LowCostGet30Min;31992
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 263FA86563144E7891A40A9D1FD384C7 Ref B: TYO201100116009 Ref C: 2023-12-06T08:30:57Z'
+ - 'Ref A: FD63561F321D4A878DBFBD69728CB9F0 Ref B: SEL221051504019 Ref C: 2025-02-11T04:18:14Z'
status:
code: 200
- message: ''
+ message: OK
- request:
body: null
headers:
@@ -431,9 +439,9 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - AZURECLI/2.55.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1?api-version=2022-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1?api-version=2020-06-01
response:
body:
string: ''
@@ -443,7 +451,7 @@ interactions:
content-length:
- '0'
date:
- - Wed, 06 Dec 2023 08:30:58 GMT
+ - Tue, 11 Feb 2025 04:18:16 GMT
expires:
- '-1'
pragma:
@@ -454,12 +462,16 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/PutDeletePPG3Min;96,Microsoft.Compute/PutDeletePPG30Min;496
+ - Microsoft.Compute/PutDeletePPGSubscriptionMaximum;116
x-ms-ratelimit-remaining-subscription-deletes:
- - '14999'
+ - '199'
+ x-ms-ratelimit-remaining-subscription-global-deletes:
+ - '2999'
x-msedge-ref:
- - 'Ref A: CA5F208DF13342DB9937CB48AC5FA4A4 Ref B: TYO201100117019 Ref C: 2023-12-06T08:30:58Z'
+ - 'Ref A: A85A219356F446EC9AA56990BC0A3674 Ref B: SEL221051803017 Ref C: 2025-02-11T04:18:15Z'
status:
code: 200
message: ''
@@ -477,33 +489,21 @@ interactions:
ParameterSetName:
- -g
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups?api-version=2020-06-01
response:
body:
- string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"my_ppg_2\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_2\"\
- ,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \
- \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\"\
- : {\r\n \"proximityPlacementGroupType\": \"Standard\",\r\n \"\
- virtualMachines\": [],\r\n \"virtualMachineScaleSets\": [],\r\n \
- \ \"availabilitySets\": []\r\n }\r\n },\r\n {\r\n \"name\"\
- : \"my_ppg_3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_3\"\
- ,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \
- \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\"\
- : {\r\n \"proximityPlacementGroupType\": \"Standard\",\r\n \"\
- virtualMachines\": [],\r\n \"virtualMachineScaleSets\": [],\r\n \
- \ \"availabilitySets\": []\r\n }\r\n }\r\n ]\r\n}"
+ string: '{"value":[{"name":"my_ppg_2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_2","type":"Microsoft.Compute/proximityPlacementGroups","location":"westus","properties":{"proximityPlacementGroupType":"Standard","virtualMachines":[],"virtualMachineScaleSets":[],"availabilitySets":[]}},{"name":"my_ppg_3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_3","type":"Microsoft.Compute/proximityPlacementGroups","location":"westus","properties":{"proximityPlacementGroupType":"Standard","virtualMachines":[],"virtualMachineScaleSets":[],"availabilitySets":[]}}]}'
headers:
cache-control:
- no-cache
content-length:
- - '1040'
+ - '773'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:30:59 GMT
+ - Tue, 11 Feb 2025 04:18:18 GMT
expires:
- '-1'
pragma:
@@ -514,13 +514,65 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
+ x-ms-original-request-ids:
+ - 585245aa-5666-45ab-8b14-3c0e2f3f0519
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31991
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23998
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: CF337EEC993A49E681A7D5EEF05462E0 Ref B: TYO201100113025 Ref C: 2023-12-06T08:30:59Z'
+ - 'Ref A: 93D9FE572988465E837C95468C8A8176 Ref B: SEL221051503023 Ref C: 2025-02-11T04:18:18Z'
status:
code: 200
- message: ''
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - ppg update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --set
+ User-Agent:
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_cmds_000001?api-version=2019-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001","name":"cli_test_ppg_cmds_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_proximity_placement_group","date":"2025-02-11T04:17:55Z","module":"vm","DateCreated":"2025-02-11T04:18:01Z","Creator":"zhuyan@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '450'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 11 Feb 2025 04:18:19 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-msedge-ref:
+ - 'Ref A: 04F3AB6A43614E0B99908141A261BED8 Ref B: SEL221051504051 Ref C: 2025-02-11T04:18:19Z'
+ status:
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -535,25 +587,25 @@ interactions:
ParameterSetName:
- -n -g --set
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_3?api-version=2020-06-01
response:
body:
string: "{\r\n \"name\": \"my_ppg_3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_3\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\",\r\n \"virtualMachines\": [],\r\n \"virtualMachineScaleSets\"\
: [],\r\n \"availabilitySets\": []\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '454'
+ - '439'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:30:59 GMT
+ - Tue, 11 Feb 2025 04:18:19 GMT
expires:
- '-1'
pragma:
@@ -564,16 +616,20 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/HighCostGet3Min;138,Microsoft.Compute/HighCostGet30Min;698
+ - Microsoft.Compute/HighCostGetSubscriptionMaximum;898
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
x-msedge-ref:
- - 'Ref A: 29F23CDE8B01460AB338E5E876F72B02 Ref B: TYO201100116033 Ref C: 2023-12-06T08:31:00Z'
+ - 'Ref A: A8977440E0A247D6AABD20098A530735 Ref B: SEL221051504011 Ref C: 2025-02-11T04:18:19Z'
status:
code: 200
message: ''
- request:
- body: '{"location": "westus", "tags": {"foo": "bar"}, "properties": {"proximityPlacementGroupType":
- "Standard"}}'
+ body: '{"location": "westus", "properties": {"proximityPlacementGroupType": "Standard"},
+ "tags": {"foo": "bar"}}'
headers:
Accept:
- application/json
@@ -590,7 +646,7 @@ interactions:
ParameterSetName:
- -n -g --set
User-Agent:
- - AZURECLI/2.55.0 azsdk-python-azure-mgmt-compute/30.3.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_3?api-version=2020-06-01
response:
@@ -607,7 +663,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 06 Dec 2023 08:31:02 GMT
+ - Tue, 11 Feb 2025 04:18:22 GMT
expires:
- '-1'
pragma:
@@ -618,12 +674,16 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/PutDeletePPG3Min;95,Microsoft.Compute/PutDeletePPG30Min;495
+ - Microsoft.Compute/PutDeletePPGSubscriptionMaximum;115
+ x-ms-ratelimit-remaining-subscription-global-writes:
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '199'
x-msedge-ref:
- - 'Ref A: B61ABE5501CC42C6844B41ECB0CB6213 Ref B: TYO201100114035 Ref C: 2023-12-06T08:31:01Z'
+ - 'Ref A: 7E3FE1983C2C4973B63D442EEEF182AF Ref B: SEL221051504011 Ref C: 2025-02-11T04:18:20Z'
status:
code: 200
message: ''
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/test_vm_commands.py b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/test_vm_commands.py
index 5453ca82f0e..63a8214acb6 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/test_vm_commands.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/hybrid_2020_09_01/test_vm_commands.py
@@ -2126,7 +2126,8 @@ def test_ppg_with_related_resources(self, resource_group):
'vm': 'vm1',
'vmss': 'vmss1',
'avset': 'avset1',
- 'ssh_key': TEST_SSH_KEY_PUB
+ 'ssh_key': TEST_SSH_KEY_PUB,
+ 'nsg': 'nsg1',
})
self.kwargs['ppg_id'] = self.cmd('ppg create -n {ppg} -t standard -g {rg}').get_output_in_json()['id']
@@ -2135,8 +2136,9 @@ def test_ppg_with_related_resources(self, resource_group):
'vm create -g {rg} -n {vm} --image Debian:debian-10:10:latest --admin-username debian --ssh-key-value \'{ssh_key}\' --ppg {ppg} --nsg-rule NONE').get_output_in_json()[
'id']
+ self.cmd('network nsg create -g {rg} -n {nsg}')
self.cmd(
- 'vmss create -g {rg} -n {vmss} --image Debian:debian-10:10:latest --admin-username debian --ssh-key-value \'{ssh_key}\' --ppg {ppg_id}')
+ 'vmss create -g {rg} -n {vmss} --image Debian:debian-10:10:latest --admin-username debian --ssh-key-value \'{ssh_key}\' --ppg {ppg_id} --nsg {nsg}')
self.kwargs['vmss_id'] = self.cmd('vmss show -g {rg} -n {vmss}').get_output_in_json()['id']
self.kwargs['avset_id'] = \
@@ -2160,12 +2162,14 @@ def test_ppg_update(self, resource_group):
'vm': 'vm1',
'vmss': 'vmss1',
'avset': 'avset1',
- 'ssh_key': TEST_SSH_KEY_PUB
+ 'ssh_key': TEST_SSH_KEY_PUB,
+ 'nsg': 'nsg1',
})
self.kwargs['ppg_id'] = self.cmd('ppg create -g {rg} -n {ppg} -t standard').get_output_in_json()['id']
- self.cmd('vmss create -g {rg} -n {vmss} --image Debian:debian-10:10:latest --admin-username debian --ssh-key-value \'{ssh_key}\'')
+ self.cmd('network nsg create -g {rg} -n {nsg}')
+ self.cmd('vmss create -g {rg} -n {vmss} --image Debian:debian-10:10:latest --admin-username debian --ssh-key-value \'{ssh_key}\' --nsg {nsg}')
self.kwargs['vmss_id'] = self.cmd('vmss show -g {rg} -n {vmss}').get_output_in_json()['id']
self.cmd('vmss deallocate -g {rg} -n {vmss}')
time.sleep(30)
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_ppg_intent_vm_sizes_and_zone.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_ppg_intent_vm_sizes_and_zone.yaml
index 1b77faa3a43..9d081f6f665 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_ppg_intent_vm_sizes_and_zone.yaml
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_ppg_intent_vm_sizes_and_zone.yaml
@@ -13,21 +13,21 @@ interactions:
ParameterSetName:
- -n -g --intent-vm-sizes --zone --tags
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_intent_vm_sizes_and_zone_000001?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_intent_vm_sizes_and_zone_000001","name":"cli_test_ppg_intent_vm_sizes_and_zone_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_intent_vm_sizes_and_zone","date":"2024-08-26T09:35:13Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_intent_vm_sizes_and_zone_000001","name":"cli_test_ppg_intent_vm_sizes_and_zone_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_intent_vm_sizes_and_zone","date":"2025-02-06T10:03:22Z","module":"vm","DateCreated":"2025-02-06T10:03:26Z","Creator":"zhuyan@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
content-length:
- - '424'
+ - '494'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:35:16 GMT
+ - Thu, 06 Feb 2025 10:03:26 GMT
expires:
- '-1'
pragma:
@@ -41,13 +41,13 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: A430C2363ADF4026A9A0FC84908A9DF4 Ref B: TYO201100115051 Ref C: 2024-08-26T09:35:17Z'
+ - 'Ref A: 67A0639D2D7C4A1796C334A375FE7FF1 Ref B: SEL221051801011 Ref C: 2025-02-06T10:03:26Z'
status:
code: 200
message: OK
- request:
- body: '{"location": "eastus2", "tags": {"tag": "test"}, "zones": ["2"], "properties":
- {"intent": {"vmSizes": ["Standard_E64s_v4", "Standard_M416ms_v2"]}}}'
+ body: '{"location": "eastus2", "properties": {"intent": {"vmSizes": ["Standard_E64s_v4",
+ "Standard_M416ms_v2"]}}, "tags": {"tag": "test"}, "zones": ["2"]}'
headers:
Accept:
- application/json
@@ -64,7 +64,7 @@ interactions:
ParameterSetName:
- -n -g --intent-vm-sizes --zone --tags
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_intent_vm_sizes_and_zone_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1?api-version=2024-07-01
response:
@@ -84,7 +84,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:35:21 GMT
+ - Thu, 06 Feb 2025 10:03:33 GMT
expires:
- '-1'
pragma:
@@ -95,6 +95,8 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/PutDeletePPGSubscriptionMaximum;119
x-ms-ratelimit-remaining-subscription-global-writes:
@@ -102,7 +104,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: CFBD2549C0CE4685B8DB44818699D739 Ref B: TYO201100113021 Ref C: 2024-08-26T09:35:17Z'
+ - 'Ref A: D5AA6091A2C64AD69DD5E7E4759FD94D Ref B: SEL221051801039 Ref C: 2025-02-06T10:03:27Z'
status:
code: 201
message: ''
@@ -120,21 +122,21 @@ interactions:
ParameterSetName:
- -n -g --intent-vm-sizes
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_intent_vm_sizes_and_zone_000001?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_intent_vm_sizes_and_zone_000001","name":"cli_test_ppg_intent_vm_sizes_and_zone_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_intent_vm_sizes_and_zone","date":"2024-08-26T09:35:13Z","module":"vm","DateCreated":"2024-08-26T09:35:19Z","Creator":"aaa@foo.com"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_intent_vm_sizes_and_zone_000001","name":"cli_test_ppg_intent_vm_sizes_and_zone_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_intent_vm_sizes_and_zone","date":"2025-02-06T10:03:22Z","module":"vm","DateCreated":"2025-02-06T10:03:26Z","Creator":"zhuyan@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
content-length:
- - '500'
+ - '494'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:35:21 GMT
+ - Thu, 06 Feb 2025 10:03:34 GMT
expires:
- '-1'
pragma:
@@ -148,13 +150,13 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 6C010F316458486AABFB46C665E0350E Ref B: TYO201151005060 Ref C: 2024-08-26T09:35:22Z'
+ - 'Ref A: 9EC820AC5B5344719026CEB1A76CEC3A Ref B: SEL221051504039 Ref C: 2025-02-06T10:03:34Z'
status:
code: 200
message: OK
- request:
- body: '{"location": "eastus2", "tags": {}, "properties": {"intent": {"vmSizes":
- ["Standard_E64s_v4", "Standard_M416ms_v2"]}}}'
+ body: '{"location": "eastus2", "properties": {"intent": {"vmSizes": ["Standard_E64s_v4",
+ "Standard_M416ms_v2"]}}}'
headers:
Accept:
- application/json
@@ -165,20 +167,20 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '118'
+ - '106'
Content-Type:
- application/json
ParameterSetName:
- -n -g --intent-vm-sizes
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_intent_vm_sizes_and_zone_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_2?api-version=2024-07-01
response:
body:
string: "{\r\n \"name\": \"my_ppg_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_intent_vm_sizes_and_zone_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_2\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"eastus2\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\",\r\n \"intent\": {\r\n \"vmSizes\": [\r\n \"\
Standard_E64s_v4\",\r\n \"Standard_M416ms_v2\"\r\n ]\r\n }\r\
\n }\r\n}"
@@ -186,11 +188,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '495'
+ - '480'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:35:24 GMT
+ - Thu, 06 Feb 2025 10:03:39 GMT
expires:
- '-1'
pragma:
@@ -201,6 +203,8 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/PutDeletePPGSubscriptionMaximum;118
x-ms-ratelimit-remaining-subscription-global-writes:
@@ -208,10 +212,102 @@ interactions:
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: 71EBF7C11A67439CB1C692E1162953FC Ref B: TYO201100117053 Ref C: 2024-08-26T09:35:22Z'
+ - 'Ref A: CD0FB4BF16D340F590E5C675FD75CA5D Ref B: SEL221051503009 Ref C: 2025-02-06T10:03:35Z'
status:
code: 201
message: ''
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - ppg create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --zone
+ User-Agent:
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_intent_vm_sizes_and_zone_000001?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_intent_vm_sizes_and_zone_000001","name":"cli_test_ppg_intent_vm_sizes_and_zone_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_intent_vm_sizes_and_zone","date":"2025-02-06T10:03:22Z","module":"vm","DateCreated":"2025-02-06T10:03:26Z","Creator":"zhuyan@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '494'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 06 Feb 2025 10:03: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-ratelimit-remaining-subscription-global-reads:
+ - '3749'
+ x-msedge-ref:
+ - 'Ref A: C1E1F0FBC4BE4AF99E341E383C774AFB Ref B: SEL221051504049 Ref C: 2025-02-06T10:03:40Z'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - ppg update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --intent-vm-sizes
+ User-Agent:
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_intent_vm_sizes_and_zone_000001?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_intent_vm_sizes_and_zone_000001","name":"cli_test_ppg_intent_vm_sizes_and_zone_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_intent_vm_sizes_and_zone","date":"2025-02-06T10:03:22Z","module":"vm","DateCreated":"2025-02-06T10:03:26Z","Creator":"zhuyan@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '494'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 06 Feb 2025 10:03: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-ratelimit-remaining-subscription-global-reads:
+ - '3749'
+ x-msedge-ref:
+ - 'Ref A: DD88D5AC055C45BAAD5B0C25098DB732 Ref B: SEL221051804023 Ref C: 2025-02-06T10:03:42Z'
+ status:
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -226,7 +322,7 @@ interactions:
ParameterSetName:
- -n -g --intent-vm-sizes
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_intent_vm_sizes_and_zone_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1?api-version=2024-07-01
response:
@@ -247,7 +343,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:35:26 GMT
+ - Thu, 06 Feb 2025 10:03:43 GMT
expires:
- '-1'
pragma:
@@ -258,18 +354,21 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/HighCostGetSubscriptionMaximum;899
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 978028C96A6F41B99F9466622F5759A5 Ref B: TYO201100114011 Ref C: 2024-08-26T09:35:26Z'
+ - 'Ref A: C74F9D482EA34CCEB098615CA90FFABD Ref B: SEL221051802053 Ref C: 2025-02-06T10:03:42Z'
status:
code: 200
message: ''
- request:
- body: '{"location": "eastus2", "tags": {"tag": "test"}, "zones": ["2"], "properties":
- {"proximityPlacementGroupType": "Standard", "intent": {"vmSizes": ["Standard_E64s_v4"]}}}'
+ body: '{"location": "eastus2", "properties": {"intent": {"vmSizes": ["Standard_E64s_v4"]},
+ "proximityPlacementGroupType": "Standard"}, "tags": {"tag": "test"}, "zones":
+ ["2"]}'
headers:
Accept:
- application/json
@@ -286,7 +385,7 @@ interactions:
ParameterSetName:
- -n -g --intent-vm-sizes
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_intent_vm_sizes_and_zone_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1?api-version=2024-07-01
response:
@@ -305,7 +404,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:35:27 GMT
+ - Thu, 06 Feb 2025 10:03:45 GMT
expires:
- '-1'
pragma:
@@ -316,6 +415,8 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/PutDeletePPGSubscriptionMaximum;117
x-ms-ratelimit-remaining-subscription-global-writes:
@@ -323,7 +424,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: 59EB7D4D206942A9BE616558FD4CCEFC Ref B: TYO201151004011 Ref C: 2024-08-26T09:35:27Z'
+ - 'Ref A: EDB120CBF5704D1BBBEE6C497EADCDAF Ref B: SEL221051802053 Ref C: 2025-02-06T10:03:43Z'
status:
code: 200
message: ''
@@ -341,9 +442,9 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_intent_vm_sizes_and_zone_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1?api-version=2022-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_intent_vm_sizes_and_zone_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1?api-version=2024-07-01
response:
body:
string: "{\r\n \"name\": \"my_ppg_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_intent_vm_sizes_and_zone_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1\"\
@@ -362,7 +463,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:35:28 GMT
+ - Thu, 06 Feb 2025 10:03:46 GMT
expires:
- '-1'
pragma:
@@ -373,12 +474,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/HighCostGetSubscriptionMaximum;898
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 4AA5F2BCE2A5443AB303A0CD7BC4FB41 Ref B: TYO201151003054 Ref C: 2024-08-26T09:35:28Z'
+ - 'Ref A: 52F50187FFD44B6D8A555FE741D4688A Ref B: SEL221051504051 Ref C: 2025-02-06T10:03:46Z'
status:
code: 200
message: ''
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_ppg_update.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_ppg_update.yaml
index 8eb0204dbce..9ee0ed026d5 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_ppg_update.yaml
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_ppg_update.yaml
@@ -13,12 +13,12 @@ interactions:
ParameterSetName:
- -g -n -t
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001","name":"cli_test_ppg_update_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_update","date":"2024-08-26T09:25:16Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001","name":"cli_test_ppg_update_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_update","date":"2025-02-10T08:13:34Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -27,7 +27,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:25:17 GMT
+ - Mon, 10 Feb 2025 08:13:36 GMT
expires:
- '-1'
pragma:
@@ -41,13 +41,12 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 26EA269DAFE74E98B5C6EC127FF03C09 Ref B: TYO201100115033 Ref C: 2024-08-26T09:25:18Z'
+ - 'Ref A: 201D0ED9BA334DA4BBC044BC9135EE07 Ref B: SEL221051802033 Ref C: 2025-02-10T08:13:37Z'
status:
code: 200
message: OK
- request:
- body: '{"location": "westus", "tags": {}, "properties": {"proximityPlacementGroupType":
- "Standard"}}'
+ body: '{"location": "westus", "properties": {"proximityPlacementGroupType": "Standard"}}'
headers:
Accept:
- application/json
@@ -58,30 +57,30 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '93'
+ - '81'
Content-Type:
- application/json
ParameterSetName:
- -g -n -t
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/proximityPlacementGroups/ppg1?api-version=2024-07-01
response:
body:
string: "{\r\n \"name\": \"ppg1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/proximityPlacementGroups/ppg1\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '355'
+ - '340'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:25:20 GMT
+ - Mon, 10 Feb 2025 08:13:40 GMT
expires:
- '-1'
pragma:
@@ -92,6 +91,8 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/PutDeletePPGSubscriptionMaximum;119
x-ms-ratelimit-remaining-subscription-global-writes:
@@ -99,10 +100,224 @@ interactions:
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: F07C1570ED43475FBA65FC8E06526E09 Ref B: TYO201151003060 Ref C: 2024-08-26T09:25:19Z'
+ - 'Ref A: F63A89649C0B475D94ADEBF954DA8CF2 Ref B: SEL221051503045 Ref C: 2025-02-10T08:13:37Z'
status:
code: 201
message: ''
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network nsg create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001","name":"cli_test_ppg_update_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_update","date":"2025-02-10T08:13:34Z","module":"vm","Creator":"zhuyan@microsoft.com","DateCreated":"2025-02-10T08:13:39Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '439'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 10 Feb 2025 08:13: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-ratelimit-remaining-subscription-global-reads:
+ - '3749'
+ x-msedge-ref:
+ - 'Ref A: B3481FC63D5846FA97C7695A29ABB556 Ref B: SEL221051805027 Ref C: 2025-02-10T08:13:41Z'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "westus"}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network nsg create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '22'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1?api-version=2022-01-01
+ response:
+ body:
+ string: '{"name":"nsg1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1","etag":"W/\"b0e5def8-6087-4840-a863-06afa4334bad\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","properties":{"provisioningState":"Updating","resourceGuid":"efdffe28-51a7-4ac9-af30-d33e336d6e37","securityRules":[],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetInBound","etag":"W/\"b0e5def8-6087-4840-a863-06afa4334bad\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Updating","description":"Allow
+ inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"b0e5def8-6087-4840-a863-06afa4334bad\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Updating","description":"Allow
+ inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllInBound","etag":"W/\"b0e5def8-6087-4840-a863-06afa4334bad\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Updating","description":"Deny
+ all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"b0e5def8-6087-4840-a863-06afa4334bad\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Updating","description":"Allow
+ outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"b0e5def8-6087-4840-a863-06afa4334bad\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Updating","description":"Allow
+ outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllOutBound","etag":"W/\"b0e5def8-6087-4840-a863-06afa4334bad\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Updating","description":"Deny
+ all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}]}}'
+ headers:
+ azure-asyncnotification:
+ - Enabled
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a510eb57-d4ec-4be6-9201-72c8ca9ac644?api-version=2022-01-01&t=638747720245461439&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=Nzwhv0aN2XcTh-KFs4NL3AbA65UAJEHFr-IxVe78p_3PTS1k24VdocyHpJ-nICBKFaZFjaA7kqqSG4zQa3VsW6cTRlzE11KWP9I8rKNJ8Hw--MrmJ2iJnbEOmIEYz7OXcQu9a59TutHYyzxsenjZ5dJklf9o5Jt8nUaJjJB_5MIT6Tb0WXfjyNv2cx5YejjEh2ky96XhWzmrrtc4HZGbB90Do0kJwO8W_YjZafr3fM_TDdilOhTWFJHqRuPhptbtJ77l3r0bLI-gUICgHcZZdnrd2ERy3ei3cc0fWmCQHpZnWMYq6Pb60ITw8pZI1mQGoycnJpQi_E1zLj5yshO-7g&h=gSsbetlA9lDMwrzCdNVoO4AvfgA3Gqggnb6PWfgBaaM
+ cache-control:
+ - no-cache
+ content-length:
+ - '4934'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 10 Feb 2025 08:13:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-cache:
+ - CONFIG_NOCACHE
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 099e5795-bbce-4ada-89bd-3109a74c68b9
+ x-ms-ratelimit-remaining-subscription-global-writes:
+ - '2999'
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '199'
+ x-msedge-ref:
+ - 'Ref A: 431E0052737B4ED3B0AF22932B84F17B Ref B: SEL221051503047 Ref C: 2025-02-10T08:13:41Z'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network nsg create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a510eb57-d4ec-4be6-9201-72c8ca9ac644?api-version=2022-01-01&t=638747720245461439&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=Nzwhv0aN2XcTh-KFs4NL3AbA65UAJEHFr-IxVe78p_3PTS1k24VdocyHpJ-nICBKFaZFjaA7kqqSG4zQa3VsW6cTRlzE11KWP9I8rKNJ8Hw--MrmJ2iJnbEOmIEYz7OXcQu9a59TutHYyzxsenjZ5dJklf9o5Jt8nUaJjJB_5MIT6Tb0WXfjyNv2cx5YejjEh2ky96XhWzmrrtc4HZGbB90Do0kJwO8W_YjZafr3fM_TDdilOhTWFJHqRuPhptbtJ77l3r0bLI-gUICgHcZZdnrd2ERy3ei3cc0fWmCQHpZnWMYq6Pb60ITw8pZI1mQGoycnJpQi_E1zLj5yshO-7g&h=gSsbetlA9lDMwrzCdNVoO4AvfgA3Gqggnb6PWfgBaaM
+ response:
+ body:
+ string: '{"status":"Succeeded"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '22'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 10 Feb 2025 08:13: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-arm-service-request-id:
+ - a42fc91e-6d96-489f-b73b-1d7efe8078d8
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3748'
+ x-msedge-ref:
+ - 'Ref A: 1FF5D97BFE4E43289B1F5CF1FBD49909 Ref B: SEL221051503047 Ref C: 2025-02-10T08:13:44Z'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network nsg create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1?api-version=2022-01-01
+ response:
+ body:
+ string: '{"name":"nsg1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1","etag":"W/\"5d6b5d97-83db-45a6-88be-413ac00c86ba\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"efdffe28-51a7-4ac9-af30-d33e336d6e37","securityRules":[],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetInBound","etag":"W/\"5d6b5d97-83db-45a6-88be-413ac00c86ba\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow
+ inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"5d6b5d97-83db-45a6-88be-413ac00c86ba\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow
+ inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllInBound","etag":"W/\"5d6b5d97-83db-45a6-88be-413ac00c86ba\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Deny
+ all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"5d6b5d97-83db-45a6-88be-413ac00c86ba\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow
+ outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"5d6b5d97-83db-45a6-88be-413ac00c86ba\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow
+ outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllOutBound","etag":"W/\"5d6b5d97-83db-45a6-88be-413ac00c86ba\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Deny
+ all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}]}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4941'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 10 Feb 2025 08:13:44 GMT
+ etag:
+ - W/"5d6b5d97-83db-45a6-88be-413ac00c86ba"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-cache:
+ - CONFIG_NOCACHE
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - b3a1e6d7-0cb7-4b7c-884d-a9cde311c250
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
+ x-msedge-ref:
+ - 'Ref A: E251FAD145754EABA7ED64B7B6E5EFB6 Ref B: SEL221051503047 Ref C: 2025-02-10T08:13:45Z'
+ status:
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -116,22 +331,23 @@ interactions:
- keep-alive
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --orchestration-mode --lb-sku
+ --nsg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001","name":"cli_test_ppg_update_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_update","date":"2024-08-26T09:25:16Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001","name":"cli_test_ppg_update_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_update","date":"2025-02-10T08:13:34Z","module":"vm","Creator":"zhuyan@microsoft.com","DateCreated":"2025-02-10T08:13:39Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
content-length:
- - '369'
+ - '439'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:25:21 GMT
+ - Mon, 10 Feb 2025 08:13:45 GMT
expires:
- '-1'
pragma:
@@ -145,7 +361,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: B9F2DD437FFE455EAB3110EA6CF9BF0F Ref B: TYO201100116019 Ref C: 2024-08-26T09:25:21Z'
+ - 'Ref A: E26800DB8BC84C8DA4372B8E3160435C Ref B: SEL221051804023 Ref C: 2025-02-10T08:13:45Z'
status:
code: 200
message: OK
@@ -162,8 +378,9 @@ interactions:
- keep-alive
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --orchestration-mode --lb-sku
+ --nsg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-07-01
response:
@@ -179,7 +396,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:25:21 GMT
+ - Mon, 10 Feb 2025 08:13:46 GMT
expires:
- '-1'
pragma:
@@ -191,11 +408,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15991,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43960
+ - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43989
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 267E606C11084CCEB74EB89757DA44A7 Ref B: TYO201100115027 Ref C: 2024-08-26T09:25:21Z'
+ - 'Ref A: CD9476AFE75B442CB8163749A2AC90EA Ref B: SEL221051802053 Ref C: 2025-02-10T08:13:46Z'
status:
code: 200
message: OK
@@ -212,8 +429,9 @@ interactions:
- keep-alive
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --orchestration-mode --lb-sku
+ --nsg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-07-01
response:
@@ -240,7 +458,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:25:22 GMT
+ - Mon, 10 Feb 2025 08:13:46 GMT
expires:
- '-1'
pragma:
@@ -252,11 +470,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMImageFromLocation3Min;12992,Microsoft.Compute/GetVMImageFromLocation30Min;73969
+ - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73994
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 098FAE3DE8314DD7B247362910BDD420 Ref B: TYO201151005029 Ref C: 2024-08-26T09:25:22Z'
+ - 'Ref A: 02121E54892D47FD88505A5A7D7FB549 Ref B: SEL221051801011 Ref C: 2025-02-10T08:13:47Z'
status:
code: 200
message: OK
@@ -273,8 +491,9 @@ interactions:
- keep-alive
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --orchestration-mode --lb-sku
+ --nsg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks?api-version=2022-01-01
response:
@@ -288,7 +507,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:25:22 GMT
+ - Mon, 10 Feb 2025 08:13:48 GMT
expires:
- '-1'
pragma:
@@ -302,7 +521,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 0F6FD27A6FFB4FAFB00898C8ED5A97CB Ref B: TYO201151004060 Ref C: 2024-08-26T09:25:23Z'
+ - 'Ref A: 16E9345A1CEC4291BE16EA1FB1DA1DF7 Ref B: SEL221051503053 Ref C: 2025-02-10T08:13:47Z'
status:
code: 200
message: OK
@@ -319,8 +538,9 @@ interactions:
- keep-alive
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --orchestration-mode --lb-sku
+ --nsg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-07-01
response:
@@ -336,7 +556,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:25:23 GMT
+ - Mon, 10 Feb 2025 08:13:48 GMT
expires:
- '-1'
pragma:
@@ -348,11 +568,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15990,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43959
+ - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43988
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3748'
x-msedge-ref:
- - 'Ref A: 9AA5023C40074064955A472FBB389A51 Ref B: TYO201100114033 Ref C: 2024-08-26T09:25:23Z'
+ - 'Ref A: 827AC73747C24E5F84BD71ECBECB337E Ref B: SEL221051503023 Ref C: 2025-02-10T08:13:48Z'
status:
code: 200
message: OK
@@ -369,8 +589,9 @@ interactions:
- keep-alive
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --orchestration-mode --lb-sku
+ --nsg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-07-01
response:
@@ -397,7 +618,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:25:24 GMT
+ - Mon, 10 Feb 2025 08:13:49 GMT
expires:
- '-1'
pragma:
@@ -409,11 +630,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMImageFromLocation3Min;12991,Microsoft.Compute/GetVMImageFromLocation30Min;73968
+ - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73993
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3748'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 81B0C8AAB5454209A86484523F63BFD8 Ref B: TYO201151006062 Ref C: 2024-08-26T09:25:24Z'
+ - 'Ref A: 2AC7A2337A9D47348C508238CE6E72FC Ref B: SEL221051503011 Ref C: 2025-02-10T08:13:48Z'
status:
code: 200
message: OK
@@ -430,8 +651,9 @@ interactions:
- keep-alive
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --orchestration-mode --lb-sku
+ --nsg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-07-01
response:
@@ -447,7 +669,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:25:25 GMT
+ - Mon, 10 Feb 2025 08:13:49 GMT
expires:
- '-1'
pragma:
@@ -459,11 +681,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15989,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43958
+ - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43987
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: B028536B4C7741C09C3B780FB0B2349D Ref B: TYO201151006054 Ref C: 2024-08-26T09:25:25Z'
+ - 'Ref A: 21CE794B22804E388D270069746F1157 Ref B: SEL221051802027 Ref C: 2025-02-10T08:13:49Z'
status:
code: 200
message: OK
@@ -480,8 +702,9 @@ interactions:
- keep-alive
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --orchestration-mode --lb-sku
+ --nsg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-07-01
response:
@@ -508,7 +731,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:25:27 GMT
+ - Mon, 10 Feb 2025 08:13:50 GMT
expires:
- '-1'
pragma:
@@ -520,11 +743,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMImageFromLocation3Min;12990,Microsoft.Compute/GetVMImageFromLocation30Min;73967
+ - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73992
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: FFF8E16B37D345EF8AF7E518ED25AC4D Ref B: TYO201151001031 Ref C: 2024-08-26T09:25:26Z'
+ - 'Ref A: 49633AF61B1A4ACCA86E70C0F9614F54 Ref B: SEL221051503049 Ref C: 2025-02-10T08:13:50Z'
status:
code: 200
message: OK
@@ -548,12 +771,7 @@ interactions:
{"id": "[concat(resourceId(''Microsoft.Network/loadBalancers'', ''vmss1LB''),
''/backendAddressPools/'', ''vmss1LBBEPool'')]"}, "protocol": "tcp", "frontendPort":
80, "backendPort": 80, "enableFloatingIP": false, "idleTimeoutInMinutes": 5}}]},
- "sku": {"name": "Standard"}}, {"type": "Microsoft.Network/networkSecurityGroups",
- "name": "vmss1NSG", "apiVersion": "2015-06-15", "location": "westus", "tags":
- {}, "dependsOn": [], "properties": {"securityRules": [{"name": "default-allow-ssh",
- "properties": {"protocol": "Tcp", "sourcePortRange": "*", "destinationPortRange":
- "22", "sourceAddressPrefix": "*", "destinationAddressPrefix": "*", "access":
- "Allow", "priority": 1000, "direction": "Inbound"}}]}}, {"type": "Microsoft.Network/loadBalancers/inboundNatRules",
+ "sku": {"name": "Standard"}}, {"type": "Microsoft.Network/loadBalancers/inboundNatRules",
"apiVersion": "2022-01-01", "name": "vmss1LB/NatRule", "location": "westus",
"properties": {"frontendIPConfiguration": {"id": "[concat(resourceId(''Microsoft.Network/loadBalancers'',
''vmss1LB''), ''/frontendIPConfigurations/'', ''loadBalancerFrontEnd'')]"},
@@ -563,23 +781,22 @@ interactions:
"tcp", "idleTimeoutInMinutes": 5}, "dependsOn": ["[concat(''Microsoft.Network/loadBalancers/'',
''vmss1LB'')]"]}, {"type": "Microsoft.Compute/virtualMachineScaleSets", "name":
"vmss1", "location": "westus", "tags": {}, "apiVersion": "2024-07-01", "dependsOn":
- ["Microsoft.Network/virtualNetworks/vmss1VNET", "Microsoft.Network/loadBalancers/vmss1LB",
- "Microsoft.Network/networkSecurityGroups/vmss1NSG"], "properties": {"overprovision":
- true, "upgradePolicy": {"mode": "manual"}, "singlePlacementGroup": null, "virtualMachineProfile":
- {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite",
- "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher":
- "Debian", "offer": "debian-10", "sku": "10", "version": "latest"}}, "osProfile":
- {"computerNamePrefix": "vmss120b2", "adminUsername": "debian", "linuxConfiguration":
- {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/debian/.ssh/authorized_keys",
- "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==
+ ["Microsoft.Network/virtualNetworks/vmss1VNET", "Microsoft.Network/loadBalancers/vmss1LB"],
+ "properties": {"overprovision": true, "upgradePolicy": {"mode": "manual"}, "singlePlacementGroup":
+ null, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption":
+ "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}},
+ "imageReference": {"publisher": "Debian", "offer": "debian-10", "sku": "10",
+ "version": "latest"}}, "osProfile": {"computerNamePrefix": "vmss15cd6", "adminUsername":
+ "debian", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh":
+ {"publicKeys": [{"path": "/home/debian/.ssh/authorized_keys", "keyData": "ssh-rsa
+ AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==
test@example.com\n"}]}}}, "networkProfile": {"networkInterfaceConfigurations":
- [{"name": "vmss120b2Nic", "properties": {"ipConfigurations": [{"name": "vmss120b2IPConfig",
+ [{"name": "vmss15cd6Nic", "properties": {"ipConfigurations": [{"name": "vmss15cd6IPConfig",
"properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},
"loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}]}}],
- "networkSecurityGroup": {"id": "[resourceId(''Microsoft.Network/networkSecurityGroups'',
- ''vmss1NSG'')]"}, "primary": "true"}}]}}, "orchestrationMode": "Uniform"}, "sku":
- {"name": "Standard_DS1_v2", "capacity": 2}}], "outputs": {"VMSS": {"type": "object",
- "value": "[reference(resourceId(''Microsoft.Compute/virtualMachineScaleSets'',
+ "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1"},
+ "primary": "true"}}]}}, "orchestrationMode": "Uniform"}, "sku": {"name": "Standard_DS1_v2",
+ "capacity": 2}}], "outputs": {"VMSS": {"type": "object", "value": "[reference(resourceId(''Microsoft.Compute/virtualMachineScaleSets'',
''vmss1''),providers(''Microsoft.Compute'', ''virtualMachineScaleSets'').apiVersions[0])]"}}},
"parameters": {}, "mode": "incremental"}}'
headers:
@@ -592,29 +809,30 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '5569'
+ - '5169'
Content-Type:
- application/json
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --orchestration-mode --lb-sku
+ --nsg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/vmss_deploy_zXuQteqzmBx8FE5WLDabiNeY6360eKsi","name":"vmss_deploy_zXuQteqzmBx8FE5WLDabiNeY6360eKsi","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17139166668627040680","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-26T09:25:35.993332Z","duration":"PT0.0001974S","correlationId":"0e8e1354-a1f9-4523-afdf-d234d2ba3edc","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"loadBalancers/inboundNatRules","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"vmss1LB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/vmss1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmss1NSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/vmss_deploy_UeSp8j73Ov0Hqx0bCB9faQy3drZ22gmE","name":"vmss_deploy_UeSp8j73Ov0Hqx0bCB9faQy3drZ22gmE","type":"Microsoft.Resources/deployments","properties":{"templateHash":"736945068718006866","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-02-10T08:14:00.7078526Z","duration":"PT0.0002527S","correlationId":"e554f9cb-cf72-4f83-8f59-f645abd10773","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]},{"resourceType":"loadBalancers/inboundNatRules","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"vmss1LB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/vmss_deploy_zXuQteqzmBx8FE5WLDabiNeY6360eKsi/operationStatuses/08584769425516592442?api-version=2022-09-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/vmss_deploy_UeSp8j73Ov0Hqx0bCB9faQy3drZ22gmE/operationStatuses/08584624316488511916?api-version=2022-09-01&t=638747720448419051&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=SA7JdtUAamqdv50Fdb1DVF36NRnfh4-5VfCGHwrbbF4vq8F0FSWPcLWRuQewp9FDv9_WZK7LnmuMAI89nQGmCo46BHXiIF30EZjZnQAAT8-pF_kQQJDN39raz_Az_NAv02EhWLYUHe35Scx55_pOuPaFtSytfjumQD7Ge-CghKyklqYUKIk27zeYQIbj0_OxiQwhWaUj5CfmH3rmXqgKkVh61cJtlG-8LB46Adug6sj6cmIktpmm4yq9WFDwFhv3nN3XhlMe-VEHrQC88QsGKqQlSX5X4-5qtbXHB5ZzIvz57NHMgFkE6nmSun27TUBuA17ZLnl54gEFo9OulEDCHg&h=WGGNszZcz_jL198Ix5XrEK_Rz39R91OwhP0ATGvAd0w
cache-control:
- no-cache
content-length:
- - '3246'
+ - '2936'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:25:37 GMT
+ - Mon, 10 Feb 2025 08:14:04 GMT
expires:
- '-1'
pragma:
@@ -626,13 +844,13 @@ interactions:
x-content-type-options:
- nosniff
x-ms-deployment-engine-version:
- - 1.95.0
+ - 1.224.0
x-ms-ratelimit-remaining-subscription-global-writes:
- '2999'
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: 17E8E73C464C4E9DB41BC0A5242DF261 Ref B: TYO201151006054 Ref C: 2024-08-26T09:25:27Z'
+ - 'Ref A: AA515B2877B24F128FAC6CE09737CF0E Ref B: SEL221051801035 Ref C: 2025-02-10T08:13:51Z'
status:
code: 201
message: Created
@@ -649,22 +867,23 @@ interactions:
- keep-alive
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --orchestration-mode --lb-sku
+ --nsg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769425516592442?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584624316488511916?api-version=2022-09-01&t=638747720448419051&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=SA7JdtUAamqdv50Fdb1DVF36NRnfh4-5VfCGHwrbbF4vq8F0FSWPcLWRuQewp9FDv9_WZK7LnmuMAI89nQGmCo46BHXiIF30EZjZnQAAT8-pF_kQQJDN39raz_Az_NAv02EhWLYUHe35Scx55_pOuPaFtSytfjumQD7Ge-CghKyklqYUKIk27zeYQIbj0_OxiQwhWaUj5CfmH3rmXqgKkVh61cJtlG-8LB46Adug6sj6cmIktpmm4yq9WFDwFhv3nN3XhlMe-VEHrQC88QsGKqQlSX5X4-5qtbXHB5ZzIvz57NHMgFkE6nmSun27TUBuA17ZLnl54gEFo9OulEDCHg&h=WGGNszZcz_jL198Ix5XrEK_Rz39R91OwhP0ATGvAd0w
response:
body:
- string: '{"status":"Running"}'
+ string: '{"status":"Accepted"}'
headers:
cache-control:
- no-cache
content-length:
- - '20'
+ - '21'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:25:37 GMT
+ - Mon, 10 Feb 2025 08:14:05 GMT
expires:
- '-1'
pragma:
@@ -678,7 +897,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 70842EF90E4D48A28F2708AD9B1429E0 Ref B: TYO201151006054 Ref C: 2024-08-26T09:25:37Z'
+ - 'Ref A: 2438348B8A9E4DDBA93214DD0BBB4F46 Ref B: SEL221051801035 Ref C: 2025-02-10T08:14:04Z'
status:
code: 200
message: OK
@@ -695,10 +914,11 @@ interactions:
- keep-alive
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --orchestration-mode --lb-sku
+ --nsg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769425516592442?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584624316488511916?api-version=2022-09-01&t=638747720448419051&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=SA7JdtUAamqdv50Fdb1DVF36NRnfh4-5VfCGHwrbbF4vq8F0FSWPcLWRuQewp9FDv9_WZK7LnmuMAI89nQGmCo46BHXiIF30EZjZnQAAT8-pF_kQQJDN39raz_Az_NAv02EhWLYUHe35Scx55_pOuPaFtSytfjumQD7Ge-CghKyklqYUKIk27zeYQIbj0_OxiQwhWaUj5CfmH3rmXqgKkVh61cJtlG-8LB46Adug6sj6cmIktpmm4yq9WFDwFhv3nN3XhlMe-VEHrQC88QsGKqQlSX5X4-5qtbXHB5ZzIvz57NHMgFkE6nmSun27TUBuA17ZLnl54gEFo9OulEDCHg&h=WGGNszZcz_jL198Ix5XrEK_Rz39R91OwhP0ATGvAd0w
response:
body:
string: '{"status":"Running"}'
@@ -710,7 +930,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:26:08 GMT
+ - Mon, 10 Feb 2025 08:14:36 GMT
expires:
- '-1'
pragma:
@@ -724,7 +944,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 8BD706069C1E41C1924D96A86F565800 Ref B: TYO201151006054 Ref C: 2024-08-26T09:26:08Z'
+ - 'Ref A: FCDD6A501B6B4B4BBC0771F90E7F40EC Ref B: SEL221051801035 Ref C: 2025-02-10T08:14:36Z'
status:
code: 200
message: OK
@@ -741,10 +961,11 @@ interactions:
- keep-alive
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --orchestration-mode --lb-sku
+ --nsg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769425516592442?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584624316488511916?api-version=2022-09-01&t=638747720448419051&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=SA7JdtUAamqdv50Fdb1DVF36NRnfh4-5VfCGHwrbbF4vq8F0FSWPcLWRuQewp9FDv9_WZK7LnmuMAI89nQGmCo46BHXiIF30EZjZnQAAT8-pF_kQQJDN39raz_Az_NAv02EhWLYUHe35Scx55_pOuPaFtSytfjumQD7Ge-CghKyklqYUKIk27zeYQIbj0_OxiQwhWaUj5CfmH3rmXqgKkVh61cJtlG-8LB46Adug6sj6cmIktpmm4yq9WFDwFhv3nN3XhlMe-VEHrQC88QsGKqQlSX5X4-5qtbXHB5ZzIvz57NHMgFkE6nmSun27TUBuA17ZLnl54gEFo9OulEDCHg&h=WGGNszZcz_jL198Ix5XrEK_Rz39R91OwhP0ATGvAd0w
response:
body:
string: '{"status":"Succeeded"}'
@@ -756,7 +977,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:26:39 GMT
+ - Mon, 10 Feb 2025 08:15:08 GMT
expires:
- '-1'
pragma:
@@ -770,7 +991,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: B642EC3A0C954FDB82193B58955CC9E3 Ref B: TYO201151006054 Ref C: 2024-08-26T09:26:39Z'
+ - 'Ref A: 80F6A40627DC45EA99A6D151D0195066 Ref B: SEL221051801035 Ref C: 2025-02-10T08:15:07Z'
status:
code: 200
message: OK
@@ -787,24 +1008,25 @@ interactions:
- keep-alive
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --orchestration-mode --lb-sku
+ --nsg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/vmss_deploy_zXuQteqzmBx8FE5WLDabiNeY6360eKsi","name":"vmss_deploy_zXuQteqzmBx8FE5WLDabiNeY6360eKsi","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17139166668627040680","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-26T09:26:22.238932Z","duration":"PT46.2457974S","correlationId":"0e8e1354-a1f9-4523-afdf-d234d2ba3edc","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"loadBalancers/inboundNatRules","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"vmss1LB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/vmss1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmss1NSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss120b2","adminUsername":"debian","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/debian/.ssh/authorized_keys","keyData":"ssh-rsa
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/vmss_deploy_UeSp8j73Ov0Hqx0bCB9faQy3drZ22gmE","name":"vmss_deploy_UeSp8j73Ov0Hqx0bCB9faQy3drZ22gmE","type":"Microsoft.Resources/deployments","properties":{"templateHash":"736945068718006866","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-02-10T08:14:46.9919519Z","duration":"PT46.284352S","correlationId":"e554f9cb-cf72-4f83-8f59-f645abd10773","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]},{"resourceType":"loadBalancers/inboundNatRules","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"vmss1LB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"orchestrationMode":"Uniform","upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss15cd6","adminUsername":"debian","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/debian/.ssh/authorized_keys","keyData":"ssh-rsa
AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==
- test@example.com\n"}]},"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-10","sku":"10","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss120b2Nic","properties":{"primary":true,"disableTcpStateTracking":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/vmss1NSG"},"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss120b2IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}]}}]}}]},"timeCreated":"2024-08-26T09:25:50.3641412+00:00"},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"17b7757c-a37d-4020-9b53-c9b9b42e1225","platformFaultDomainCount":5,"timeCreated":"2024-08-26T09:25:50.3641412+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/NatRule"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/vmss1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}'
+ test@example.com\n"}]},"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-10","sku":"10","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss15cd6Nic","properties":{"primary":true,"disableTcpStateTracking":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1"},"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss15cd6IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}]}}]}}]},"timeCreated":"2025-02-10T08:14:14.8543292+00:00"},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"c47ea3df-4335-4c2d-be08-b3383cdbe182","platformFaultDomainCount":5,"timeCreated":"2025-02-10T08:14:14.8543292+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/NatRule"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}'
headers:
cache-control:
- no-cache
content-length:
- - '6891'
+ - '6414'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:26:40 GMT
+ - Mon, 10 Feb 2025 08:15:09 GMT
expires:
- '-1'
pragma:
@@ -816,9 +1038,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3748'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 9E89270CE22C498889FE9A70F4844F63 Ref B: TYO201151006054 Ref C: 2024-08-26T09:26:40Z'
+ - 'Ref A: 413692CBCCE64F7E9A9899B3FF84A112 Ref B: SEL221051801035 Ref C: 2025-02-10T08:15:08Z'
status:
code: 200
message: OK
@@ -836,7 +1058,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2024-07-01
response:
@@ -845,10 +1067,10 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\"\
: \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\"\
,\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"etag\"\
- : \"\\\"2\\\"\",\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\
+ : \"\\\"3\\\"\",\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\
\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": {\r\n\
\ \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\
- \n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss120b2\"\
+ \n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss15cd6\"\
,\r\n \"adminUsername\": \"debian\",\r\n \"linuxConfiguration\"\
: {\r\n \"disablePasswordAuthentication\": true,\r\n \"\
ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \
@@ -865,29 +1087,29 @@ interactions:
: {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\"\
,\r\n \"sku\": \"10\",\r\n \"version\": \"latest\"\r\n \
\ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\
- :[{\"name\":\"vmss120b2Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\
- :false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/vmss1NSG\"\
+ :[{\"name\":\"vmss15cd6Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\
+ :false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1\"\
},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\
- :[{\"name\":\"vmss120b2IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"\
+ :[{\"name\":\"vmss15cd6IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"\
},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\
:[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"\
- }]}}]}}]},\r\n \"timeCreated\": \"2024-08-26T09:25:50.3641412+00:00\"\
+ }]}}]}}]},\r\n \"timeCreated\": \"2025-02-10T08:14:14.8543292+00:00\"\
\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\"\
: true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"\
- uniqueId\": \"17b7757c-a37d-4020-9b53-c9b9b42e1225\",\r\n \"platformFaultDomainCount\"\
- : 5,\r\n \"timeCreated\": \"2024-08-26T09:25:50.3641412+00:00\"\r\n }\r\
+ uniqueId\": \"c47ea3df-4335-4c2d-be08-b3383cdbe182\",\r\n \"platformFaultDomainCount\"\
+ : 5,\r\n \"timeCreated\": \"2025-02-10T08:14:14.8543292+00:00\"\r\n }\r\
\n}"
headers:
cache-control:
- no-cache
content-length:
- - '3577'
+ - '3573'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:26:41 GMT
+ - Mon, 10 Feb 2025 08:15:11 GMT
etag:
- - '"2"'
+ - '"3"'
expires:
- '-1'
pragma:
@@ -898,12 +1120,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2396,Microsoft.Compute/GetVMScaleSetResource;32
+ - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2399,Microsoft.Compute/GetVMScaleSetResource;32
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 77739AC55A214E0F8A04E645F9302059 Ref B: TYO201100116021 Ref C: 2024-08-26T09:26:41Z'
+ - 'Ref A: F092B036E45A4EB59CFC2C3E97917D38 Ref B: SEL221051801021 Ref C: 2025-02-10T08:15:10Z'
status:
code: 200
message: ''
@@ -925,7 +1149,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/deallocate?api-version=2024-07-01
response:
@@ -935,17 +1159,17 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f6286b60-b853-411d-af4a-6c7933dcb364?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-07-01&t=638602612023629480&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=IfjmXrIycLpYDTTShZb1N3wB3CfzdRf1czNpqQekZ1cg-Bx8K0pqltVkcJ0dZVwt-JczUrKbD9G8xXGDucLtIXXldfckV9CQvtuHAw6zPUJDNIYgdASRfO234BC5OL8kXbowfoyiszaFR5o6-tQM30QVm8dBgm83Enc9w2e2ARCaFnWyGBjCQrTBBIFMevV28AahdSZP2AC1WDnIOXklZKupxJF9M6SkDvkOcuHL6OtDMopsSDzu9KItI9bapQKbu5ae2t45Okdul83vgBZSxpjViX182zOzda4B2QMWa3ReMwSQBFT_w2bqE0NQiIHog_EeBEoGzt2nVrFL5IFj7Q&h=XiporVAmgEidiBDJiBw_LaBTAtsRTmVm7reQPcbysks
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/88490363-6d53-4470-9c5f-53e825621a79?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-07-01&t=638747721128444528&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=ly_lAOmgC_KX6epop5wptFhcj-TZcKl7lqng3KNWEZ_uXaJA8kk5A7pT69kgv0o1wm0YLN9_PcPuC9f8gzG_Ru-UrTAvqCW7LEcgpmFn4OsAVwpzfEauDZi8UHyl28_4-Srq8BHREMUS1Mo7YWeYBKa6ebmWKzXyLC6Qhngim6mVCNCoNXLxiuQzn85tpnqq2QTf_mJ3vhAQf_7wagnNnedmtY0vCSvLNS80-tzpQBFq463YbI7Mpd3wDpJUUFYtU0D5n43nn89C_IzYxHoYg_2XT-1DiMxUk52IfJqqB39Mi5iYlEB_5a6YuGS24LRvsG-Z-C3sYA6ap9uXf8bz-Q&h=cs6OUtBZkos-uz5w9g0KcrdcMo7IzWnASKr7DW_fA0I
cache-control:
- no-cache
content-length:
- '0'
date:
- - Mon, 26 Aug 2024 09:26:41 GMT
+ - Mon, 10 Feb 2025 08:15:12 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f6286b60-b853-411d-af4a-6c7933dcb364?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2024-07-01&t=638602612023629480&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=IfjmXrIycLpYDTTShZb1N3wB3CfzdRf1czNpqQekZ1cg-Bx8K0pqltVkcJ0dZVwt-JczUrKbD9G8xXGDucLtIXXldfckV9CQvtuHAw6zPUJDNIYgdASRfO234BC5OL8kXbowfoyiszaFR5o6-tQM30QVm8dBgm83Enc9w2e2ARCaFnWyGBjCQrTBBIFMevV28AahdSZP2AC1WDnIOXklZKupxJF9M6SkDvkOcuHL6OtDMopsSDzu9KItI9bapQKbu5ae2t45Okdul83vgBZSxpjViX182zOzda4B2QMWa3ReMwSQBFT_w2bqE0NQiIHog_EeBEoGzt2nVrFL5IFj7Q&h=XiporVAmgEidiBDJiBw_LaBTAtsRTmVm7reQPcbysks
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/88490363-6d53-4470-9c5f-53e825621a79?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2024-07-01&t=638747721128600762&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=P-OwibMgX2hKAP6Ld7FUdAdecolaemu3IKlQw90PmW2Hv9wm2TXDps7-rzoujnhUMioqWTgNsokXKN84O4QCGnwOTH5BgokO7wjAwGaN-zLbsT-bHqQNcSXbPTA1j7C04EJYQZu-sgNN4LPl3Vzgxlg6J4wE8h0NCAukK9LcJu5nPdWMhrSCbfHb3yBj-3QxHxvvUs_tdAYsWHQ4_zjg4jHcPVfMsvpMu6xvBhqhAm2TIPW7mWnOwzbBe82xMsWeHCqlmOKRgGdvVeOyB3SMudfXP-10C3E9IPHN9LP-UrI1Mfc1RS0ra0nacevgxBxJkS0xzeWUR2DoSzrasHm-1Q&h=46XFm7jMUR8sH0ZFJ9AWxl6KxAFZ--oSIdaDkludztU
pragma:
- no-cache
strict-transport-security:
@@ -954,8 +1178,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/DeleteVMScaleSetSubscriptionMaximum;524,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;5998,Microsoft.Compute/VmssQueuedVMOperations;0
+ - Microsoft.Compute/DeleteVMScaleSetSubscriptionMaximum;524,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;5994,Microsoft.Compute/VmssQueuedVMOperations;0
x-ms-ratelimit-remaining-subscription-global-writes:
- '2999'
x-ms-ratelimit-remaining-subscription-writes:
@@ -963,7 +1189,7 @@ interactions:
x-ms-request-charge:
- '2'
x-msedge-ref:
- - 'Ref A: 173D471EEFE64BAEBBD806335690CFB4 Ref B: TYO201151004031 Ref C: 2024-08-26T09:26:41Z'
+ - 'Ref A: 4F92F494745D4C098BA73CFA6F5F66E4 Ref B: SEL221051803037 Ref C: 2025-02-10T08:15:12Z'
status:
code: 202
message: ''
@@ -981,13 +1207,13 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f6286b60-b853-411d-af4a-6c7933dcb364?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-07-01&t=638602612023629480&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=IfjmXrIycLpYDTTShZb1N3wB3CfzdRf1czNpqQekZ1cg-Bx8K0pqltVkcJ0dZVwt-JczUrKbD9G8xXGDucLtIXXldfckV9CQvtuHAw6zPUJDNIYgdASRfO234BC5OL8kXbowfoyiszaFR5o6-tQM30QVm8dBgm83Enc9w2e2ARCaFnWyGBjCQrTBBIFMevV28AahdSZP2AC1WDnIOXklZKupxJF9M6SkDvkOcuHL6OtDMopsSDzu9KItI9bapQKbu5ae2t45Okdul83vgBZSxpjViX182zOzda4B2QMWa3ReMwSQBFT_w2bqE0NQiIHog_EeBEoGzt2nVrFL5IFj7Q&h=XiporVAmgEidiBDJiBw_LaBTAtsRTmVm7reQPcbysks
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/88490363-6d53-4470-9c5f-53e825621a79?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-07-01&t=638747721128444528&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=ly_lAOmgC_KX6epop5wptFhcj-TZcKl7lqng3KNWEZ_uXaJA8kk5A7pT69kgv0o1wm0YLN9_PcPuC9f8gzG_Ru-UrTAvqCW7LEcgpmFn4OsAVwpzfEauDZi8UHyl28_4-Srq8BHREMUS1Mo7YWeYBKa6ebmWKzXyLC6Qhngim6mVCNCoNXLxiuQzn85tpnqq2QTf_mJ3vhAQf_7wagnNnedmtY0vCSvLNS80-tzpQBFq463YbI7Mpd3wDpJUUFYtU0D5n43nn89C_IzYxHoYg_2XT-1DiMxUk52IfJqqB39Mi5iYlEB_5a6YuGS24LRvsG-Z-C3sYA6ap9uXf8bz-Q&h=cs6OUtBZkos-uz5w9g0KcrdcMo7IzWnASKr7DW_fA0I
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:26:42.2400615+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"f6286b60-b853-411d-af4a-6c7933dcb364\"\
+ string: "{\r\n \"startTime\": \"2025-02-10T08:15:12.6992333+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"88490363-6d53-4470-9c5f-53e825621a79\"\
\r\n}"
headers:
cache-control:
@@ -997,7 +1223,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:26:42 GMT
+ - Mon, 10 Feb 2025 08:15:12 GMT
expires:
- '-1'
pragma:
@@ -1008,12 +1234,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14997
+ - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14999
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 2FAD928A1B4241C7B3F8E5CBD5BD8E1F Ref B: TYO201151004031 Ref C: 2024-08-26T09:26:42Z'
+ - 'Ref A: 4455AA4B50714AC7891E9A63957A3302 Ref B: SEL221051803037 Ref C: 2025-02-10T08:15:12Z'
status:
code: 200
message: ''
@@ -1031,14 +1259,14 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f6286b60-b853-411d-af4a-6c7933dcb364?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-07-01&t=638602612023629480&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=IfjmXrIycLpYDTTShZb1N3wB3CfzdRf1czNpqQekZ1cg-Bx8K0pqltVkcJ0dZVwt-JczUrKbD9G8xXGDucLtIXXldfckV9CQvtuHAw6zPUJDNIYgdASRfO234BC5OL8kXbowfoyiszaFR5o6-tQM30QVm8dBgm83Enc9w2e2ARCaFnWyGBjCQrTBBIFMevV28AahdSZP2AC1WDnIOXklZKupxJF9M6SkDvkOcuHL6OtDMopsSDzu9KItI9bapQKbu5ae2t45Okdul83vgBZSxpjViX182zOzda4B2QMWa3ReMwSQBFT_w2bqE0NQiIHog_EeBEoGzt2nVrFL5IFj7Q&h=XiporVAmgEidiBDJiBw_LaBTAtsRTmVm7reQPcbysks
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/88490363-6d53-4470-9c5f-53e825621a79?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-07-01&t=638747721128444528&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=ly_lAOmgC_KX6epop5wptFhcj-TZcKl7lqng3KNWEZ_uXaJA8kk5A7pT69kgv0o1wm0YLN9_PcPuC9f8gzG_Ru-UrTAvqCW7LEcgpmFn4OsAVwpzfEauDZi8UHyl28_4-Srq8BHREMUS1Mo7YWeYBKa6ebmWKzXyLC6Qhngim6mVCNCoNXLxiuQzn85tpnqq2QTf_mJ3vhAQf_7wagnNnedmtY0vCSvLNS80-tzpQBFq463YbI7Mpd3wDpJUUFYtU0D5n43nn89C_IzYxHoYg_2XT-1DiMxUk52IfJqqB39Mi5iYlEB_5a6YuGS24LRvsG-Z-C3sYA6ap9uXf8bz-Q&h=cs6OUtBZkos-uz5w9g0KcrdcMo7IzWnASKr7DW_fA0I
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:26:42.2400615+00:00\",\r\n \"\
- endTime\": \"2024-08-26T09:27:03.0685803+00:00\",\r\n \"status\": \"Succeeded\"\
- ,\r\n \"name\": \"f6286b60-b853-411d-af4a-6c7933dcb364\"\r\n}"
+ string: "{\r\n \"startTime\": \"2025-02-10T08:15:12.6992333+00:00\",\r\n \"\
+ endTime\": \"2025-02-10T08:15:30.9183368+00:00\",\r\n \"status\": \"Succeeded\"\
+ ,\r\n \"name\": \"88490363-6d53-4470-9c5f-53e825621a79\"\r\n}"
headers:
cache-control:
- no-cache
@@ -1047,7 +1275,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:27:12 GMT
+ - Mon, 10 Feb 2025 08:15:42 GMT
expires:
- '-1'
pragma:
@@ -1058,12 +1286,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14991
+ - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14997
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: C91B24E2F08749A1B4BF1DC2A100E3C2 Ref B: TYO201151004031 Ref C: 2024-08-26T09:27:12Z'
+ - 'Ref A: F5399B2D963A4AE0A0046476395FC657 Ref B: SEL221051803037 Ref C: 2025-02-10T08:15:43Z'
status:
code: 200
message: ''
@@ -1081,9 +1311,9 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f6286b60-b853-411d-af4a-6c7933dcb364?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2024-07-01&t=638602612023629480&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=IfjmXrIycLpYDTTShZb1N3wB3CfzdRf1czNpqQekZ1cg-Bx8K0pqltVkcJ0dZVwt-JczUrKbD9G8xXGDucLtIXXldfckV9CQvtuHAw6zPUJDNIYgdASRfO234BC5OL8kXbowfoyiszaFR5o6-tQM30QVm8dBgm83Enc9w2e2ARCaFnWyGBjCQrTBBIFMevV28AahdSZP2AC1WDnIOXklZKupxJF9M6SkDvkOcuHL6OtDMopsSDzu9KItI9bapQKbu5ae2t45Okdul83vgBZSxpjViX182zOzda4B2QMWa3ReMwSQBFT_w2bqE0NQiIHog_EeBEoGzt2nVrFL5IFj7Q&h=XiporVAmgEidiBDJiBw_LaBTAtsRTmVm7reQPcbysks
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/88490363-6d53-4470-9c5f-53e825621a79?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2024-07-01&t=638747721128600762&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=P-OwibMgX2hKAP6Ld7FUdAdecolaemu3IKlQw90PmW2Hv9wm2TXDps7-rzoujnhUMioqWTgNsokXKN84O4QCGnwOTH5BgokO7wjAwGaN-zLbsT-bHqQNcSXbPTA1j7C04EJYQZu-sgNN4LPl3Vzgxlg6J4wE8h0NCAukK9LcJu5nPdWMhrSCbfHb3yBj-3QxHxvvUs_tdAYsWHQ4_zjg4jHcPVfMsvpMu6xvBhqhAm2TIPW7mWnOwzbBe82xMsWeHCqlmOKRgGdvVeOyB3SMudfXP-10C3E9IPHN9LP-UrI1Mfc1RS0ra0nacevgxBxJkS0xzeWUR2DoSzrasHm-1Q&h=46XFm7jMUR8sH0ZFJ9AWxl6KxAFZ--oSIdaDkludztU
response:
body:
string: ''
@@ -1093,7 +1323,7 @@ interactions:
content-length:
- '0'
date:
- - Mon, 26 Aug 2024 09:27:12 GMT
+ - Mon, 10 Feb 2025 08:15:43 GMT
expires:
- '-1'
pragma:
@@ -1104,12 +1334,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationResource;41,Microsoft.Compute/GetOperationSubscriptionMaximum;14989
+ - Microsoft.Compute/GetOperationResource;41,Microsoft.Compute/GetOperationSubscriptionMaximum;14996
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: B71574BE68BF4A288B15B053F2E0DEBD Ref B: TYO201151004031 Ref C: 2024-08-26T09:27:13Z'
+ - 'Ref A: 1C14B28E179B43D3B5525CBB045BB0F5 Ref B: SEL221051803037 Ref C: 2025-02-10T08:15:43Z'
status:
code: 200
message: ''
@@ -1127,7 +1359,7 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2024-07-01
response:
@@ -1139,7 +1371,7 @@ interactions:
: \"\\\"3\\\"\",\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\
\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": {\r\n\
\ \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\
- \n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss120b2\"\
+ \n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss15cd6\"\
,\r\n \"adminUsername\": \"debian\",\r\n \"linuxConfiguration\"\
: {\r\n \"disablePasswordAuthentication\": true,\r\n \"\
ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \
@@ -1156,27 +1388,27 @@ interactions:
: {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\"\
,\r\n \"sku\": \"10\",\r\n \"version\": \"latest\"\r\n \
\ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\
- :[{\"name\":\"vmss120b2Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\
- :false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/vmss1NSG\"\
+ :[{\"name\":\"vmss15cd6Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\
+ :false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1\"\
},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\
- :[{\"name\":\"vmss120b2IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"\
+ :[{\"name\":\"vmss15cd6IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"\
},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\
:[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"\
- }]}}]}}]},\r\n \"timeCreated\": \"2024-08-26T09:25:50.3641412+00:00\"\
+ }]}}]}}]},\r\n \"timeCreated\": \"2025-02-10T08:14:14.8543292+00:00\"\
\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\"\
: true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"\
- uniqueId\": \"17b7757c-a37d-4020-9b53-c9b9b42e1225\",\r\n \"platformFaultDomainCount\"\
- : 5,\r\n \"timeCreated\": \"2024-08-26T09:25:50.3641412+00:00\"\r\n }\r\
+ uniqueId\": \"c47ea3df-4335-4c2d-be08-b3383cdbe182\",\r\n \"platformFaultDomainCount\"\
+ : 5,\r\n \"timeCreated\": \"2025-02-10T08:14:14.8543292+00:00\"\r\n }\r\
\n}"
headers:
cache-control:
- no-cache
content-length:
- - '3577'
+ - '3573'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:27:43 GMT
+ - Mon, 10 Feb 2025 08:16:13 GMT
etag:
- '"3"'
expires:
@@ -1189,19 +1421,21 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2398,Microsoft.Compute/GetVMScaleSetResource;34
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 24E91552F98C4A6394F9D7C93EBC0E5E Ref B: TYO201151001042 Ref C: 2024-08-26T09:27:43Z'
+ - 'Ref A: 2A63DE547B524B52821780FFD4271DB6 Ref B: SEL221051801027 Ref C: 2025-02-10T08:16:14Z'
status:
code: 200
message: ''
- request:
body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_DS1_v2", "tier":
"Standard", "capacity": 2}, "properties": {"upgradePolicy": {"mode": "Manual"},
- "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "vmss120b2", "adminUsername":
+ "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "vmss15cd6", "adminUsername":
"debian", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh":
{"publicKeys": [{"path": "/home/debian/.ssh/authorized_keys", "keyData": "ssh-rsa
AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==
@@ -1209,9 +1443,9 @@ interactions:
true, "requireGuestProvisionSignal": true}, "storageProfile": {"osDisk": {"caching":
"ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "osType": "Linux",
"managedDisk": {"storageAccountType": "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations":
- [{"name": "vmss120b2Nic", "properties": {"primary": true, "disableTcpStateTracking":
- false, "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/vmss1NSG"},
- "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "vmss120b2IPConfig",
+ [{"name": "vmss15cd6Nic", "properties": {"primary": true, "disableTcpStateTracking":
+ false, "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1"},
+ "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "vmss15cd6IPConfig",
"properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},
"privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id":
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}]}}],
@@ -1229,13 +1463,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '2718'
+ - '2714'
Content-Type:
- application/json
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2024-07-01
response:
@@ -1247,9 +1481,9 @@ interactions:
: \"\\\"4\\\"\",\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\
\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": {\r\n\
\ \"mode\": \"Manual\"\r\n },\r\n \"proximityPlacementGroup\":\
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_PDGMCIUHNRG42HB2X6O5236UXHSRRL7MY7NRNGHANMMEGQE4V5RENGT/providers/Microsoft.Compute/proximityPlacementGroups/ppg1\"\
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_A7ZNFRD6MS7GNL36J32MUS4AOJHYH6IIXMFDQWWJ4KWVB332PDYIWLA/providers/Microsoft.Compute/proximityPlacementGroups/ppg1\"\
\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\
- \n \"computerNamePrefix\": \"vmss120b2\",\r\n \"adminUsername\"\
+ \n \"computerNamePrefix\": \"vmss15cd6\",\r\n \"adminUsername\"\
: \"debian\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\
: true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n \
\ {\r\n \"path\": \"/home/debian/.ssh/authorized_keys\"\
@@ -1265,31 +1499,31 @@ interactions:
: {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\"\
,\r\n \"sku\": \"10\",\r\n \"version\": \"latest\"\r\n \
\ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\
- :[{\"name\":\"vmss120b2Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\
- :false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/vmss1NSG\"\
+ :[{\"name\":\"vmss15cd6Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\
+ :false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1\"\
},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\
- :[{\"name\":\"vmss120b2IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"\
+ :[{\"name\":\"vmss15cd6IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"\
},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\
:[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"\
- }]}}]}}]},\r\n \"timeCreated\": \"2024-08-26T09:25:50.3641412+00:00\"\
+ }]}}]}}]},\r\n \"timeCreated\": \"2025-02-10T08:14:14.8543292+00:00\"\
\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\"\
: true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"\
- uniqueId\": \"17b7757c-a37d-4020-9b53-c9b9b42e1225\",\r\n \"platformFaultDomainCount\"\
- : 5,\r\n \"timeCreated\": \"2024-08-26T09:25:50.3641412+00:00\"\r\n }\r\
+ uniqueId\": \"c47ea3df-4335-4c2d-be08-b3383cdbe182\",\r\n \"platformFaultDomainCount\"\
+ : 5,\r\n \"timeCreated\": \"2025-02-10T08:14:14.8543292+00:00\"\r\n }\r\
\n}"
headers:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/371ff87c-c41c-4b60-ac0d-58f17bac4222?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-07-01&t=638602612701750855&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=Nrucy7d3-yt1vIUp_wC3MQkS7k_qtcSnuUZxziWH4xjX8v83Vhn86VL3fJOsbDovaGAW7y9cu7nxxmADEfKpE2FRPZ2XyMe2anXhTRhTpzcGPLU0T086yOFgNztljBWUmSES-eyZwUYp64saVwAAuVjt17PkVa7maj4ITeUFD_wVJgBjhC238ikVG_Pop7ZSNSHhvpVMeNLpN1whRCZvR2odCB9kL1xMtPcttyZD_X2jksgCv4ba-5EeQSd2vCEgbTtarsGGjhNFoFf1HDxpY13-DCT9IqiIZUoAVFgbLYcPwZYv3xnUmj9JIWId2hlhN31sLdqzcQBodYRL-fi_6A&h=CAGicnnWNjfLTO8UQlMCzZbL6L0tuVoJ_qZRQNaeSxo
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b498b33f-1077-46f3-8a04-4713f7fdc8b5?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-07-01&t=638747721812807625&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=DgYil2uS4MyyYQ7c-4pAlMsI555CF9uHZQrb3Iz5fx6ZtqYL-e3PGThIezMnPFVScZt9K7BWfZ2jHItd5kwn51J_-a2ZjrIzlEVFb3NYWG7lYezRQF6Lq39cjnjVIzZ-7_ZfqCAl0dAeV-tlLM-_uRJ9rzCuUSws7_ho9ljLnz_FYD02x0PY5xx5c9Qvq0QXRzp1HABrQpeA0DoXKkYEouqY7PRRkkajWC2zJ08MJFFUvINEFthRw0QCn2A-TrgA5V9iI6ojGZSy5aeCl4sitixeOhM39Wko-SmmhqWQh1wEg-XXhT17uLWyqYoJ3Qx9XptE65_i2bTYRqpzJhFHtQ&h=0-WSBEWgOM8282mwtiEB62iQLnK2QmKi_rDVG9htap4
cache-control:
- no-cache
content-length:
- - '3834'
+ - '3830'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:27:49 GMT
+ - Mon, 10 Feb 2025 08:16:20 GMT
etag:
- '"4"'
expires:
@@ -1302,8 +1536,10 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateVMScaleSetSubscriptionMaximum;373,Microsoft.Compute/CreateVMScaleSetResource;11,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;5996,Microsoft.Compute/VmssQueuedVMOperations;0
+ - Microsoft.Compute/CreateVMScaleSetSubscriptionMaximum;374,Microsoft.Compute/CreateVMScaleSetResource;11,Microsoft.Compute/VMScaleSetBatchedVMRequestsSubscriptionMaximum;6000,Microsoft.Compute/VmssQueuedVMOperations;0
x-ms-ratelimit-remaining-subscription-global-writes:
- '2999'
x-ms-ratelimit-remaining-subscription-writes:
@@ -1311,7 +1547,7 @@ interactions:
x-ms-request-charge:
- '0'
x-msedge-ref:
- - 'Ref A: 1A536EDBB2BE43BA8353D5444F9DB945 Ref B: TYO201100113045 Ref C: 2024-08-26T09:27:44Z'
+ - 'Ref A: 20FBB2EEB8ED4640BCDE41DDDF91A3F6 Ref B: SEL221051504045 Ref C: 2025-02-10T08:16:15Z'
status:
code: 200
message: ''
@@ -1329,14 +1565,14 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/371ff87c-c41c-4b60-ac0d-58f17bac4222?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-07-01&t=638602612701750855&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=Nrucy7d3-yt1vIUp_wC3MQkS7k_qtcSnuUZxziWH4xjX8v83Vhn86VL3fJOsbDovaGAW7y9cu7nxxmADEfKpE2FRPZ2XyMe2anXhTRhTpzcGPLU0T086yOFgNztljBWUmSES-eyZwUYp64saVwAAuVjt17PkVa7maj4ITeUFD_wVJgBjhC238ikVG_Pop7ZSNSHhvpVMeNLpN1whRCZvR2odCB9kL1xMtPcttyZD_X2jksgCv4ba-5EeQSd2vCEgbTtarsGGjhNFoFf1HDxpY13-DCT9IqiIZUoAVFgbLYcPwZYv3xnUmj9JIWId2hlhN31sLdqzcQBodYRL-fi_6A&h=CAGicnnWNjfLTO8UQlMCzZbL6L0tuVoJ_qZRQNaeSxo
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b498b33f-1077-46f3-8a04-4713f7fdc8b5?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-07-01&t=638747721812807625&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=DgYil2uS4MyyYQ7c-4pAlMsI555CF9uHZQrb3Iz5fx6ZtqYL-e3PGThIezMnPFVScZt9K7BWfZ2jHItd5kwn51J_-a2ZjrIzlEVFb3NYWG7lYezRQF6Lq39cjnjVIzZ-7_ZfqCAl0dAeV-tlLM-_uRJ9rzCuUSws7_ho9ljLnz_FYD02x0PY5xx5c9Qvq0QXRzp1HABrQpeA0DoXKkYEouqY7PRRkkajWC2zJ08MJFFUvINEFthRw0QCn2A-TrgA5V9iI6ojGZSy5aeCl4sitixeOhM39Wko-SmmhqWQh1wEg-XXhT17uLWyqYoJ3Qx9XptE65_i2bTYRqpzJhFHtQ&h=0-WSBEWgOM8282mwtiEB62iQLnK2QmKi_rDVG9htap4
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:27:49.8193717+00:00\",\r\n \"\
- endTime\": \"2024-08-26T09:27:50.2100054+00:00\",\r\n \"status\": \"Succeeded\"\
- ,\r\n \"name\": \"371ff87c-c41c-4b60-ac0d-58f17bac4222\"\r\n}"
+ string: "{\r\n \"startTime\": \"2025-02-10T08:16:20.9036243+00:00\",\r\n \"\
+ endTime\": \"2025-02-10T08:16:21.3567572+00:00\",\r\n \"status\": \"Succeeded\"\
+ ,\r\n \"name\": \"b498b33f-1077-46f3-8a04-4713f7fdc8b5\"\r\n}"
headers:
cache-control:
- no-cache
@@ -1345,7 +1581,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:27:49 GMT
+ - Mon, 10 Feb 2025 08:16:21 GMT
expires:
- '-1'
pragma:
@@ -1356,12 +1592,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14992
+ - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14999
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3748'
x-msedge-ref:
- - 'Ref A: 3DD403544AF34BD1B15E2D4CE8DEFB9E Ref B: TYO201100113045 Ref C: 2024-08-26T09:27:50Z'
+ - 'Ref A: DD95DCCA54A842E78D4778CF7FD16BA9 Ref B: SEL221051504045 Ref C: 2025-02-10T08:16:21Z'
status:
code: 200
message: ''
@@ -1379,7 +1617,7 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2024-07-01
response:
@@ -1391,9 +1629,9 @@ interactions:
: \"\\\"4\\\"\",\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\
\n \"orchestrationMode\": \"Uniform\",\r\n \"upgradePolicy\": {\r\n\
\ \"mode\": \"Manual\"\r\n },\r\n \"proximityPlacementGroup\":\
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_PDGMCIUHNRG42HB2X6O5236UXHSRRL7MY7NRNGHANMMEGQE4V5RENGT/providers/Microsoft.Compute/proximityPlacementGroups/ppg1\"\
+ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_A7ZNFRD6MS7GNL36J32MUS4AOJHYH6IIXMFDQWWJ4KWVB332PDYIWLA/providers/Microsoft.Compute/proximityPlacementGroups/ppg1\"\
\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\
- \n \"computerNamePrefix\": \"vmss120b2\",\r\n \"adminUsername\"\
+ \n \"computerNamePrefix\": \"vmss15cd6\",\r\n \"adminUsername\"\
: \"debian\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\
: true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n \
\ {\r\n \"path\": \"/home/debian/.ssh/authorized_keys\"\
@@ -1409,27 +1647,27 @@ interactions:
: {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\"\
,\r\n \"sku\": \"10\",\r\n \"version\": \"latest\"\r\n \
\ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\"\
- :[{\"name\":\"vmss120b2Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\
- :false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/vmss1NSG\"\
+ :[{\"name\":\"vmss15cd6Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\
+ :false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1\"\
},\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\
- :[{\"name\":\"vmss120b2IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"\
+ :[{\"name\":\"vmss15cd6IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"\
},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\"\
:[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"\
- }]}}]}}]},\r\n \"timeCreated\": \"2024-08-26T09:25:50.3641412+00:00\"\
+ }]}}]}}]},\r\n \"timeCreated\": \"2025-02-10T08:14:14.8543292+00:00\"\
\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\"\
: true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"\
- uniqueId\": \"17b7757c-a37d-4020-9b53-c9b9b42e1225\",\r\n \"platformFaultDomainCount\"\
- : 5,\r\n \"timeCreated\": \"2024-08-26T09:25:50.3641412+00:00\"\r\n }\r\
+ uniqueId\": \"c47ea3df-4335-4c2d-be08-b3383cdbe182\",\r\n \"platformFaultDomainCount\"\
+ : 5,\r\n \"timeCreated\": \"2025-02-10T08:14:14.8543292+00:00\"\r\n }\r\
\n}"
headers:
cache-control:
- no-cache
content-length:
- - '3835'
+ - '3831'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:27:50 GMT
+ - Mon, 10 Feb 2025 08:16:21 GMT
etag:
- '"4"'
expires:
@@ -1442,12 +1680,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2395,Microsoft.Compute/GetVMScaleSetResource;32
+ - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2396,Microsoft.Compute/GetVMScaleSetResource;32
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3748'
+ - '3747'
x-msedge-ref:
- - 'Ref A: 980C285710684D7D87A1D52169B183A6 Ref B: TYO201100113045 Ref C: 2024-08-26T09:27:50Z'
+ - 'Ref A: 50844570CCE34E5DB751E91FF8F17431 Ref B: SEL221051504045 Ref C: 2025-02-10T08:16:21Z'
status:
code: 200
message: ''
@@ -1465,21 +1705,21 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001","name":"cli_test_ppg_update_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_update","date":"2024-08-26T09:25:16Z","module":"vm","Creator":"aaaaaaaaaaaaaaaaaa@foo.com","DateCreated":"2024-08-26T09:25:21Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001","name":"cli_test_ppg_update_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_update","date":"2025-02-10T08:13:34Z","module":"vm","Creator":"zhuyan@microsoft.com","DateCreated":"2025-02-10T08:13:39Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
content-length:
- - '445'
+ - '439'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:27:50 GMT
+ - Mon, 10 Feb 2025 08:16:22 GMT
expires:
- '-1'
pragma:
@@ -1493,7 +1733,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: BD9E3ABF6E334C2F99E45F47DF1405FD Ref B: TYO201151003036 Ref C: 2024-08-26T09:27:51Z'
+ - 'Ref A: 7A038F02B38A4D10B1C6BA7E5FB198D8 Ref B: SEL221051503025 Ref C: 2025-02-10T08:16:22Z'
status:
code: 200
message: OK
@@ -1511,7 +1751,7 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-07-01
response:
@@ -1527,7 +1767,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:27:51 GMT
+ - Mon, 10 Feb 2025 08:16:23 GMT
expires:
- '-1'
pragma:
@@ -1539,11 +1779,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15995,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43956
+ - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15995,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43985
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 053F1D36783F4D68A06CE828E65ADA9C Ref B: TYO201100115033 Ref C: 2024-08-26T09:27:51Z'
+ - 'Ref A: B290FE94E47F41268DF1914B06B080D7 Ref B: SEL221051503053 Ref C: 2025-02-10T08:16:22Z'
status:
code: 200
message: OK
@@ -1561,7 +1801,7 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-07-01
response:
@@ -1588,7 +1828,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:27:52 GMT
+ - Mon, 10 Feb 2025 08:16:23 GMT
expires:
- '-1'
pragma:
@@ -1600,11 +1840,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMImageFromLocation3Min;12996,Microsoft.Compute/GetVMImageFromLocation30Min;73966
+ - Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73990
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 7BE9414D8A1E44568AF239A95823C026 Ref B: TYO201100114039 Ref C: 2024-08-26T09:27:52Z'
+ - 'Ref A: 95B32967C091499393D66D43CB088E21 Ref B: SEL221051504021 Ref C: 2025-02-10T08:16:23Z'
status:
code: 200
message: OK
@@ -1622,12 +1862,12 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"38808189-fa7a-4d8a-807f-eba01edacca6","roleDefinitionId":"7dbad3e2-b105-40d5-8fe4-4a9ff6c17ae6"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"getDnsResourceReference","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/DS","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/TLSA","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/NAPTR","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/dnssecConfigs","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolvers","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
@@ -1635,8 +1875,9 @@ interactions:
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
@@ -1644,8 +1885,9 @@ interactions:
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
@@ -1653,8 +1895,9 @@ interactions:
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
@@ -1662,8 +1905,9 @@ interactions:
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
@@ -1671,32 +1915,85 @@ interactions:
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
3","Southeast Asia","Central India","Canada Central","Central US","France
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
3","Southeast Asia","Central India","Canada Central","Central US","France
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
3","Southeast Asia","Central India","Canada Central","Central US","France
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West
+ Central US","East US","UK South","East US 2","West Europe","North Europe","Australia
+ East","South Central US","North Central US","West US 2","West US 3","Southeast
+ Asia","Central India","Canada Central","Central US","France Central","Japan
+ East","Germany West Central","South Africa North","Korea Central","Sweden
+ Central","East Asia","Switzerland North","Brazil South","West US","Norway
+ East","UAE North","Australia Southeast","Canada East","Japan West","Italy
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West
+ Central US","East US","UK South","East US 2","West Europe","North Europe","Australia
+ East","South Central US","North Central US","West US 2","West US 3","Southeast
+ Asia","Central India","Canada Central","Central US","France Central","Japan
+ East","Germany West Central","South Africa North","Korea Central","Sweden
+ Central","East Asia","Switzerland North","Brazil South","West US","Norway
+ East","UAE North","Australia Southeast","Canada East","Japan West","Italy
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West
+ Central US","East US","UK South","East US 2","West Europe","North Europe","Australia
+ East","South Central US","North Central US","West US 2","West US 3","Southeast
+ Asia","Central India","Canada Central","Central US","France Central","Japan
+ East","Germany West Central","South Africa North","Korea Central","Sweden
+ Central","East Asia","Switzerland North","Brazil South","West US","Norway
+ East","UAE North","Australia Southeast","Canada East","Japan West","Italy
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West
+ Central US","East US","UK South","East US 2","West Europe","North Europe","Australia
+ East","South Central US","North Central US","West US 2","West US 3","Southeast
+ Asia","Central India","Canada Central","Central US","France Central","Japan
+ East","Germany West Central","South Africa North","Korea Central","Sweden
+ Central","East Asia","Switzerland North","Brazil South","West US","Norway
+ East","UAE North","Australia Southeast","Canada East","Japan West","Italy
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West
+ Central US","East US","UK South","East US 2","West Europe","North Europe","Australia
+ East","South Central US","North Central US","West US 2","West US 3","Southeast
+ Asia","Central India","Canada Central","Central US","France Central","Japan
+ East","Germany West Central","South Africa North","Korea Central","Sweden
+ Central","East Asia","Switzerland North","Brazil South","West US","Norway
+ East","UAE North","Australia Southeast","Canada East","Japan West","Italy
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central
US","East US","East US 2","North Central US","South Central US","West US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil
South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central
@@ -1711,13 +2008,13 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"localNetworkGateways","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1727,7 +2024,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connections","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1737,7 +2034,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationGateways","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1747,7 +2044,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -1756,20 +2053,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"SupportsTags,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1779,7 +2076,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"expressRouteServiceProviders","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1789,7 +2086,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1798,7 +2095,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1807,7 +2104,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1816,7 +2113,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1825,7 +2122,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1834,7 +2131,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1843,7 +2140,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"bgpServiceCommunities","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1853,7 +2150,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1862,7 +2159,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"vpnServerConfigurations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1871,8 +2168,8 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","France Central","South
Africa North","Switzerland North","Germany West Central","Norway East","West
US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","Central US EUAP","East
- US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","Central
+ US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"virtualHubs","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
@@ -1881,8 +2178,8 @@ interactions:
South","Korea Central","Korea South","France Central","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"vpnGateways","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
@@ -1891,8 +2188,8 @@ interactions:
South","Korea Central","Korea South","France Central","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"p2sVpnGateways","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
@@ -1901,8 +2198,8 @@ interactions:
South","Korea Central","Korea South","France Central","Australia Central","UAE
North","South Africa North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"expressRouteGateways","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1912,7 +2209,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1922,7 +2219,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1931,7 +2228,7 @@ interactions:
Central","UAE North","South Africa North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1941,7 +2238,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"azureFirewalls","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Brazil South","Australia
@@ -1951,7 +2248,7 @@ interactions:
South","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -1960,15 +2257,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1977,7 +2274,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1986,7 +2283,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1996,16 +2293,16 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West
- US","North Europe","West Europe","East Asia","Southeast Asia","North Central
- US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
- South","Australia East","Australia Southeast","Central India","South India","West
- India","Canada Central","Canada East","West Central US","West US 2","UK West","UK
- South","Korea Central","Korea South","France Central","Australia Central","South
- Africa North","UAE North","Switzerland North","Germany West Central","Norway
- East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG","East US"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West
+ US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
+ Central US","South Central US","Central US","East US 2","Japan East","Japan
+ West","Brazil South","Australia East","Australia Southeast","Central India","South
+ India","West India","Canada Central","Canada East","West Central US","West
+ US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia
+ Central","South Africa North","UAE North","Switzerland North","Germany West
+ Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
+ Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
@@ -2014,8 +2311,8 @@ interactions:
South","Korea Central","Korea South","France Central","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -2024,14 +2321,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -2041,7 +2339,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West
Central US","North Central US","West US","West Europe","UAE Central","Germany
North","East US","West India","East US 2","Australia Central","Australia Central
2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE
@@ -2051,9 +2349,9 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US STG","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West
Central US","Jio India West","Jio India Central","North Central US","West
US","West Europe","UAE Central","Germany North","East US","West India","East
US 2","Australia Central","Australia Central 2","South Africa West","Brazil
@@ -2063,8 +2361,8 @@ interactions:
East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea
Central","Southeast Asia","South Central US","Norway West","Australia East","Japan
East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West
Central US","Jio India West","North Central US","West US","West Europe","UAE
Central","Germany North","East US","West India","East US 2","Australia Central","Australia
Central 2","South Africa West","Brazil South","UK West","North Europe","Central
@@ -2074,8 +2372,8 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US 2 EUAP","Central
- US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West
Central US","North Central US","West US","West Europe","UAE Central","Germany
North","East US","West India","East US 2","Australia Central","Australia Central
2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE
@@ -2085,8 +2383,8 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US STG","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West
Central US","North Central US","West US","West Europe","UAE Central","Germany
North","East US","West India","East US 2","Australia Central","Australia Central
2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE
@@ -2096,8 +2394,8 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US STG","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West
Central US","North Central US","West US","West Europe","UAE Central","Germany
North","East US","West India","East US 2","Australia Central","Australia Central
2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE
@@ -2107,8 +2405,8 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US STG","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West
Central US","North Central US","West US","West Europe","UAE Central","Germany
North","East US","West India","East US 2","Australia Central","Australia Central
2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE
@@ -2118,8 +2416,8 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US STG","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West
Central US","North Central US","West US","West Europe","UAE Central","Germany
North","East US","West India","East US 2","Australia Central","Australia Central
2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE
@@ -2129,17 +2427,32 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US STG","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East
US 2","West US 2","East US","West Europe","UK South","North Europe","Central
US","Australia East","West US","South Central US","France Central","South
- Africa North","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East
+ Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany
+ West Central","Italy North","Norway East","Poland Central","Switzerland North","UAE
+ North","Brazil South","Israel Central","North Central US","Australia Central","Australia
+ Central 2","Australia Southeast","South India","Canada East","France South","Germany
+ North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico
+ Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand
+ North","Southeast Asia","Japan West","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East
US 2","West US 2","East US","West Europe","UK South","North Europe","Central
- US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags,
+ US","Australia East","West US","South Central US","France Central","South
+ Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany
+ West Central","Italy North","Norway East","Poland Central","Switzerland North","UAE
+ North","Brazil South","Israel Central","North Central US","Australia Central","Australia
+ Central 2","Australia Southeast","South India","Canada East","France South","Germany
+ North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico
+ Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand
+ North","Southeast Asia","Japan West","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East
+ US 2","West US 2","East US","West Europe","UK South","North Europe","Central
+ US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East
US 2","West US 2","East US","West Europe","UK South","North Europe","Central
- US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West
+ US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West
Central US","Jio India West","North Central US","West US","West Europe","UAE
Central","Germany North","East US","West India","East US 2","Australia Central","Australia
Central 2","South Africa West","Brazil South","UK West","North Europe","Central
@@ -2149,8 +2462,8 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US 2 EUAP","Central
- US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2158,7 +2471,7 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West
+ US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2166,7 +2479,7 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
- Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy
North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE
Central","Germany North","Central India","Korea South","Switzerland North","Switzerland
West","Japan West","France South","South Africa West","West India","Canada
@@ -2176,8 +2489,8 @@ interactions:
West","West US","East US","North Europe","West Europe","West Central US","South
Central US","Australia East","Australia Central","Australia Southeast","UK
South","East US 2","West US 2","North Central US","Canada Central","France
- Central","Central US","Israel Central","Spain Central","Mexico Central","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags,
+ Central","Central US","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar
Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany
North","Central India","Korea South","Switzerland North","Switzerland West","Japan
@@ -2188,8 +2501,9 @@ interactions:
US","North Europe","West Europe","South Central US","Australia East","Australia
Central","Australia Southeast","UK South","East US 2","West US 2","North Central
US","Canada Central","France Central","West Central US","Central US","Israel
- Central","Spain Central","Mexico Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy
+ Central","Spain Central","Mexico Central","New Zealand North","Central US
+ EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy
North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE
Central","Germany North","Central India","Korea South","Switzerland North","Switzerland
West","Japan West","France South","South Africa West","West India","Canada
@@ -2199,8 +2513,8 @@ interactions:
West","West US","East US","North Europe","West Europe","West Central US","South
Central US","Australia East","Australia Central","Australia Southeast","UK
South","East US 2","West US 2","North Central US","Canada Central","France
- Central","Central US","Israel Central","Spain Central","Mexico Central","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags,
+ Central","Central US","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy
North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Jio
India West","Sweden Central","UAE North","Australia Central 2","UAE Central","Germany
@@ -2211,11 +2525,11 @@ interactions:
US","East US","North Europe","West Europe","West Central US","South Central
US","Australia East","Australia Central","Australia Southeast","UK South","East
US 2","West US 2","North Central US","Canada Central","France Central","Central
- US","Israel Central","Spain Central","Mexico Central","Central US EUAP","East
- US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity,
- SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove,
+ US","Israel Central","Spain Central","Mexico Central","New Zealand North","Central
+ US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity,
+ SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -2225,13 +2539,13 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -2241,7 +2555,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2250,7 +2564,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -2259,14 +2573,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -2276,7 +2591,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -2285,20 +2600,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -2308,7 +2623,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2317,7 +2632,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -2326,20 +2641,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -2349,13 +2664,13 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dscpConfigurations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -2365,7 +2680,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -2375,13 +2690,13 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints/privateLinkServiceProxies","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -2391,7 +2706,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2399,8 +2714,8 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"loadBalancers","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
@@ -2409,14 +2724,14 @@ interactions:
South","Korea Central","Korea South","France Central","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkSecurityGroups","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -2426,7 +2741,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationSecurityGroups","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -2436,7 +2751,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"serviceEndpointPolicies","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -2446,7 +2761,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkIntentPolicies","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -2456,7 +2771,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"routeTables","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -2466,7 +2781,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPPrefixes","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -2476,7 +2791,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -2485,20 +2800,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -2508,7 +2823,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -2518,7 +2833,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -2528,7 +2843,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/pingMeshes","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -2538,8 +2853,8 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2548,7 +2863,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2557,7 +2872,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2566,7 +2881,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2575,7 +2890,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2584,7 +2899,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2593,7 +2908,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2602,7 +2917,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2611,7 +2926,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2620,7 +2935,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2629,7 +2944,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2638,7 +2953,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2647,7 +2962,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2656,7 +2971,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2665,7 +2980,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2674,7 +2989,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2683,7 +2998,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2692,7 +3007,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2701,7 +3016,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2710,7 +3025,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2719,7 +3034,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2728,7 +3043,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2737,7 +3052,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2746,7 +3061,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2755,7 +3070,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2764,7 +3079,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"privateLinkServices","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -2774,13 +3089,13 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"SupportsTags,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/privateLinkServices","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -2790,7 +3105,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2799,7 +3114,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"networkProfiles","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
@@ -2808,8 +3123,8 @@ interactions:
South","Korea Central","Korea South","France Central","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -2819,7 +3134,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2828,7 +3143,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -2838,7 +3153,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2847,7 +3162,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2856,7 +3171,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2865,7 +3180,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2874,7 +3189,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2883,7 +3198,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2892,7 +3207,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central
US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North
Central US","South Central US","West US","North Europe","West Europe","East
Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia
@@ -2916,7 +3231,7 @@ interactions:
Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia
East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"expressRouteCrossConnections","locations":["East
- US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"networkSecurityPerimeters","locations":["East
US 2 EUAP","Central US EUAP","West Central US","Jio India West","Jio India
Central","East US STG","North Central US","West US","West Europe","UAE Central","Germany
@@ -2928,19 +3243,19 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/lenses","locations":["Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '195259'
+ - '205291'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:27:54 GMT
+ - Mon, 10 Feb 2025 08:16:25 GMT
expires:
- '-1'
pragma:
@@ -2952,9 +3267,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3747'
+ - '3749'
x-msedge-ref:
- - 'Ref A: FDEB2BFD67E14200A40402DEE0E01ED9 Ref B: TYO201151003036 Ref C: 2024-08-26T09:27:53Z'
+ - 'Ref A: 8D324CBD2FC24438A152BD8C7CDD38F7 Ref B: SEL221051804039 Ref C: 2025-02-10T08:16:24Z'
status:
code: 200
message: OK
@@ -2972,9 +3287,9 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-05-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/virtualNetworks/vnet1''
@@ -2988,7 +3303,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:27:55 GMT
+ - Mon, 10 Feb 2025 08:16:26 GMT
expires:
- '-1'
pragma:
@@ -3002,7 +3317,7 @@ interactions:
x-ms-failure-cause:
- gateway
x-msedge-ref:
- - 'Ref A: 320B2B44E23249C1B15A1557E6512093 Ref B: TYO201100113021 Ref C: 2024-08-26T09:27:55Z'
+ - 'Ref A: 6E1086D1A34B4F0F9B836E811752664A Ref B: SEL221051802047 Ref C: 2025-02-10T08:16:26Z'
status:
code: 404
message: Not Found
@@ -3020,7 +3335,7 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-07-01
response:
@@ -3036,7 +3351,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:27:57 GMT
+ - Mon, 10 Feb 2025 08:16:27 GMT
expires:
- '-1'
pragma:
@@ -3048,11 +3363,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15994,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43955
+ - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15994,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43984
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 26FE1909E05D4F1894932F07BDD4F24B Ref B: TYO201100114011 Ref C: 2024-08-26T09:27:56Z'
+ - 'Ref A: 1490FEF5E5974EE0A7F124E44C5DA89B Ref B: SEL221051503017 Ref C: 2025-02-10T08:16:27Z'
status:
code: 200
message: OK
@@ -3070,7 +3385,7 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-07-01
response:
@@ -3097,7 +3412,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:27:57 GMT
+ - Mon, 10 Feb 2025 08:16:28 GMT
expires:
- '-1'
pragma:
@@ -3109,11 +3424,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73965
+ - Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73989
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: FC40C3C821534632970D6D0257281B8C Ref B: TYO201100114037 Ref C: 2024-08-26T09:27:57Z'
+ - 'Ref A: 935B63C92AEC4F27BF7330E0F951F0EE Ref B: SEL221051504019 Ref C: 2025-02-10T08:16:28Z'
status:
code: 200
message: OK
@@ -3131,7 +3446,7 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-07-01
response:
@@ -3147,7 +3462,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:27:58 GMT
+ - Mon, 10 Feb 2025 08:16:29 GMT
expires:
- '-1'
pragma:
@@ -3159,11 +3474,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43954
+ - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43983
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 31773EECF65E4378B68A0871FF205CB2 Ref B: TYO201100116009 Ref C: 2024-08-26T09:27:58Z'
+ - 'Ref A: B6D07204DB2643E5BF9B4B8E0A3AE6B9 Ref B: SEL221051503051 Ref C: 2025-02-10T08:16:28Z'
status:
code: 200
message: OK
@@ -3181,7 +3496,7 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-07-01
response:
@@ -3208,7 +3523,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:27:59 GMT
+ - Mon, 10 Feb 2025 08:16:30 GMT
expires:
- '-1'
pragma:
@@ -3220,11 +3535,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73964
+ - Microsoft.Compute/GetVMImageFromLocation3Min;12996,Microsoft.Compute/GetVMImageFromLocation30Min;73988
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 46A75E354B414FFBA9C180C9373B899E Ref B: TYO201151003042 Ref C: 2024-08-26T09:27:59Z'
+ - 'Ref A: C6AB60F8FBD5403F9543DD0EB727EBF1 Ref B: SEL221051503025 Ref C: 2025-02-10T08:16:29Z'
status:
code: 200
message: OK
@@ -3242,12 +3557,12 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"38808189-fa7a-4d8a-807f-eba01edacca6","roleDefinitionId":"7dbad3e2-b105-40d5-8fe4-4a9ff6c17ae6"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"getDnsResourceReference","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/DS","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/TLSA","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/NAPTR","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/dnssecConfigs","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolvers","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
@@ -3255,8 +3570,9 @@ interactions:
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
@@ -3264,8 +3580,9 @@ interactions:
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
@@ -3273,8 +3590,9 @@ interactions:
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
@@ -3282,8 +3600,9 @@ interactions:
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
@@ -3291,32 +3610,85 @@ interactions:
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
3","Southeast Asia","Central India","Canada Central","Central US","France
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
3","Southeast Asia","Central India","Canada Central","Central US","France
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
3","Southeast Asia","Central India","Canada Central","Central US","France
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West
+ Central US","East US","UK South","East US 2","West Europe","North Europe","Australia
+ East","South Central US","North Central US","West US 2","West US 3","Southeast
+ Asia","Central India","Canada Central","Central US","France Central","Japan
+ East","Germany West Central","South Africa North","Korea Central","Sweden
+ Central","East Asia","Switzerland North","Brazil South","West US","Norway
+ East","UAE North","Australia Southeast","Canada East","Japan West","Italy
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West
+ Central US","East US","UK South","East US 2","West Europe","North Europe","Australia
+ East","South Central US","North Central US","West US 2","West US 3","Southeast
+ Asia","Central India","Canada Central","Central US","France Central","Japan
+ East","Germany West Central","South Africa North","Korea Central","Sweden
+ Central","East Asia","Switzerland North","Brazil South","West US","Norway
+ East","UAE North","Australia Southeast","Canada East","Japan West","Italy
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West
+ Central US","East US","UK South","East US 2","West Europe","North Europe","Australia
+ East","South Central US","North Central US","West US 2","West US 3","Southeast
+ Asia","Central India","Canada Central","Central US","France Central","Japan
+ East","Germany West Central","South Africa North","Korea Central","Sweden
+ Central","East Asia","Switzerland North","Brazil South","West US","Norway
+ East","UAE North","Australia Southeast","Canada East","Japan West","Italy
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West
+ Central US","East US","UK South","East US 2","West Europe","North Europe","Australia
+ East","South Central US","North Central US","West US 2","West US 3","Southeast
+ Asia","Central India","Canada Central","Central US","France Central","Japan
+ East","Germany West Central","South Africa North","Korea Central","Sweden
+ Central","East Asia","Switzerland North","Brazil South","West US","Norway
+ East","UAE North","Australia Southeast","Canada East","Japan West","Italy
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West
+ Central US","East US","UK South","East US 2","West Europe","North Europe","Australia
+ East","South Central US","North Central US","West US 2","West US 3","Southeast
+ Asia","Central India","Canada Central","Central US","France Central","Japan
+ East","Germany West Central","South Africa North","Korea Central","Sweden
+ Central","East Asia","Switzerland North","Brazil South","West US","Norway
+ East","UAE North","Australia Southeast","Canada East","Japan West","Italy
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central
US","East US","East US 2","North Central US","South Central US","West US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil
South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central
@@ -3331,13 +3703,13 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"localNetworkGateways","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3347,7 +3719,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connections","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3357,7 +3729,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationGateways","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3367,7 +3739,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -3376,20 +3748,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"SupportsTags,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3399,7 +3771,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"expressRouteServiceProviders","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3409,7 +3781,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3418,7 +3790,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3427,7 +3799,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3436,7 +3808,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3445,7 +3817,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3454,7 +3826,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3463,7 +3835,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"bgpServiceCommunities","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3473,7 +3845,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3482,7 +3854,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"vpnServerConfigurations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3491,8 +3863,8 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","France Central","South
Africa North","Switzerland North","Germany West Central","Norway East","West
US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","Central US EUAP","East
- US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","Central
+ US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"virtualHubs","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
@@ -3501,8 +3873,8 @@ interactions:
South","Korea Central","Korea South","France Central","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"vpnGateways","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
@@ -3511,8 +3883,8 @@ interactions:
South","Korea Central","Korea South","France Central","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"p2sVpnGateways","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
@@ -3521,8 +3893,8 @@ interactions:
South","Korea Central","Korea South","France Central","Australia Central","UAE
North","South Africa North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"expressRouteGateways","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3532,7 +3904,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3542,7 +3914,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3551,7 +3923,7 @@ interactions:
Central","UAE North","South Africa North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3561,7 +3933,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"azureFirewalls","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Brazil South","Australia
@@ -3571,7 +3943,7 @@ interactions:
South","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -3580,15 +3952,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3597,7 +3969,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3606,7 +3978,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3616,16 +3988,16 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West
- US","North Europe","West Europe","East Asia","Southeast Asia","North Central
- US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
- South","Australia East","Australia Southeast","Central India","South India","West
- India","Canada Central","Canada East","West Central US","West US 2","UK West","UK
- South","Korea Central","Korea South","France Central","Australia Central","South
- Africa North","UAE North","Switzerland North","Germany West Central","Norway
- East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG","East US"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West
+ US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
+ Central US","South Central US","Central US","East US 2","Japan East","Japan
+ West","Brazil South","Australia East","Australia Southeast","Central India","South
+ India","West India","Canada Central","Canada East","West Central US","West
+ US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia
+ Central","South Africa North","UAE North","Switzerland North","Germany West
+ Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
+ Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
@@ -3634,8 +4006,8 @@ interactions:
South","Korea Central","Korea South","France Central","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -3644,14 +4016,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3661,7 +4034,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West
Central US","North Central US","West US","West Europe","UAE Central","Germany
North","East US","West India","East US 2","Australia Central","Australia Central
2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE
@@ -3671,9 +4044,9 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US STG","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West
Central US","Jio India West","Jio India Central","North Central US","West
US","West Europe","UAE Central","Germany North","East US","West India","East
US 2","Australia Central","Australia Central 2","South Africa West","Brazil
@@ -3683,8 +4056,8 @@ interactions:
East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea
Central","Southeast Asia","South Central US","Norway West","Australia East","Japan
East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West
Central US","Jio India West","North Central US","West US","West Europe","UAE
Central","Germany North","East US","West India","East US 2","Australia Central","Australia
Central 2","South Africa West","Brazil South","UK West","North Europe","Central
@@ -3694,8 +4067,8 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US 2 EUAP","Central
- US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West
Central US","North Central US","West US","West Europe","UAE Central","Germany
North","East US","West India","East US 2","Australia Central","Australia Central
2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE
@@ -3705,8 +4078,8 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US STG","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West
Central US","North Central US","West US","West Europe","UAE Central","Germany
North","East US","West India","East US 2","Australia Central","Australia Central
2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE
@@ -3716,8 +4089,8 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US STG","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West
Central US","North Central US","West US","West Europe","UAE Central","Germany
North","East US","West India","East US 2","Australia Central","Australia Central
2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE
@@ -3727,8 +4100,8 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US STG","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West
Central US","North Central US","West US","West Europe","UAE Central","Germany
North","East US","West India","East US 2","Australia Central","Australia Central
2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE
@@ -3738,8 +4111,8 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US STG","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West
Central US","North Central US","West US","West Europe","UAE Central","Germany
North","East US","West India","East US 2","Australia Central","Australia Central
2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE
@@ -3749,17 +4122,32 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US STG","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East
US 2","West US 2","East US","West Europe","UK South","North Europe","Central
US","Australia East","West US","South Central US","France Central","South
- Africa North","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East
+ Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany
+ West Central","Italy North","Norway East","Poland Central","Switzerland North","UAE
+ North","Brazil South","Israel Central","North Central US","Australia Central","Australia
+ Central 2","Australia Southeast","South India","Canada East","France South","Germany
+ North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico
+ Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand
+ North","Southeast Asia","Japan West","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East
US 2","West US 2","East US","West Europe","UK South","North Europe","Central
- US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags,
+ US","Australia East","West US","South Central US","France Central","South
+ Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany
+ West Central","Italy North","Norway East","Poland Central","Switzerland North","UAE
+ North","Brazil South","Israel Central","North Central US","Australia Central","Australia
+ Central 2","Australia Southeast","South India","Canada East","France South","Germany
+ North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico
+ Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand
+ North","Southeast Asia","Japan West","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East
+ US 2","West US 2","East US","West Europe","UK South","North Europe","Central
+ US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East
US 2","West US 2","East US","West Europe","UK South","North Europe","Central
- US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West
+ US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West
Central US","Jio India West","North Central US","West US","West Europe","UAE
Central","Germany North","East US","West India","East US 2","Australia Central","Australia
Central 2","South Africa West","Brazil South","UK West","North Europe","Central
@@ -3769,8 +4157,8 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US 2 EUAP","Central
- US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3778,7 +4166,7 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West
+ US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3786,7 +4174,7 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
- Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy
North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE
Central","Germany North","Central India","Korea South","Switzerland North","Switzerland
West","Japan West","France South","South Africa West","West India","Canada
@@ -3796,8 +4184,8 @@ interactions:
West","West US","East US","North Europe","West Europe","West Central US","South
Central US","Australia East","Australia Central","Australia Southeast","UK
South","East US 2","West US 2","North Central US","Canada Central","France
- Central","Central US","Israel Central","Spain Central","Mexico Central","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags,
+ Central","Central US","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar
Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany
North","Central India","Korea South","Switzerland North","Switzerland West","Japan
@@ -3808,8 +4196,9 @@ interactions:
US","North Europe","West Europe","South Central US","Australia East","Australia
Central","Australia Southeast","UK South","East US 2","West US 2","North Central
US","Canada Central","France Central","West Central US","Central US","Israel
- Central","Spain Central","Mexico Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy
+ Central","Spain Central","Mexico Central","New Zealand North","Central US
+ EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy
North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE
Central","Germany North","Central India","Korea South","Switzerland North","Switzerland
West","Japan West","France South","South Africa West","West India","Canada
@@ -3819,8 +4208,8 @@ interactions:
West","West US","East US","North Europe","West Europe","West Central US","South
Central US","Australia East","Australia Central","Australia Southeast","UK
South","East US 2","West US 2","North Central US","Canada Central","France
- Central","Central US","Israel Central","Spain Central","Mexico Central","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags,
+ Central","Central US","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy
North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Jio
India West","Sweden Central","UAE North","Australia Central 2","UAE Central","Germany
@@ -3831,11 +4220,11 @@ interactions:
US","East US","North Europe","West Europe","West Central US","South Central
US","Australia East","Australia Central","Australia Southeast","UK South","East
US 2","West US 2","North Central US","Canada Central","France Central","Central
- US","Israel Central","Spain Central","Mexico Central","Central US EUAP","East
- US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity,
- SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove,
+ US","Israel Central","Spain Central","Mexico Central","New Zealand North","Central
+ US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity,
+ SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3845,13 +4234,13 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3861,7 +4250,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3870,7 +4259,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -3879,14 +4268,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3896,7 +4286,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -3905,20 +4295,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3928,7 +4318,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3937,7 +4327,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -3946,20 +4336,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3969,13 +4359,13 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dscpConfigurations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3985,7 +4375,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3995,13 +4385,13 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints/privateLinkServiceProxies","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -4011,7 +4401,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4019,8 +4409,8 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"loadBalancers","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
@@ -4029,14 +4419,14 @@ interactions:
South","Korea Central","Korea South","France Central","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkSecurityGroups","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -4046,7 +4436,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationSecurityGroups","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -4056,7 +4446,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"serviceEndpointPolicies","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -4066,7 +4456,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkIntentPolicies","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -4076,7 +4466,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"routeTables","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -4086,7 +4476,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPPrefixes","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -4096,7 +4486,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -4105,20 +4495,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -4128,7 +4518,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -4138,7 +4528,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -4148,7 +4538,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/pingMeshes","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -4158,8 +4548,8 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4168,7 +4558,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4177,7 +4567,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4186,7 +4576,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4195,7 +4585,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4204,7 +4594,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4213,7 +4603,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4222,7 +4612,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4231,7 +4621,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4240,7 +4630,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4249,7 +4639,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4258,7 +4648,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4267,7 +4657,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4276,7 +4666,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4285,7 +4675,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4294,7 +4684,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4303,7 +4693,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4312,7 +4702,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4321,7 +4711,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4330,7 +4720,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4339,7 +4729,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4348,7 +4738,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4357,7 +4747,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4366,7 +4756,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4375,7 +4765,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4384,7 +4774,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"privateLinkServices","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -4394,13 +4784,13 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"SupportsTags,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/privateLinkServices","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -4410,7 +4800,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4419,7 +4809,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"networkProfiles","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
@@ -4428,8 +4818,8 @@ interactions:
South","Korea Central","Korea South","France Central","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -4439,7 +4829,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4448,7 +4838,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -4458,7 +4848,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4467,7 +4857,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4476,7 +4866,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4485,7 +4875,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4494,7 +4884,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4503,7 +4893,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4512,7 +4902,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central
US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North
Central US","South Central US","West US","North Europe","West Europe","East
Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia
@@ -4536,7 +4926,7 @@ interactions:
Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia
East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"expressRouteCrossConnections","locations":["East
- US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"networkSecurityPerimeters","locations":["East
US 2 EUAP","Central US EUAP","West Central US","Jio India West","Jio India
Central","East US STG","North Central US","West US","West Europe","UAE Central","Germany
@@ -4548,19 +4938,19 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/lenses","locations":["Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '195259'
+ - '205291'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:28:01 GMT
+ - Mon, 10 Feb 2025 08:16:31 GMT
expires:
- '-1'
pragma:
@@ -4574,7 +4964,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 513B68BACE0549AB8D1517C4A1A5FE40 Ref B: TYO201100116021 Ref C: 2024-08-26T09:28:00Z'
+ - 'Ref A: F72A5662B86B41078C361BEFA7D37615 Ref B: SEL221051802035 Ref C: 2025-02-10T08:16:30Z'
status:
code: 200
message: OK
@@ -4592,9 +4982,9 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2024-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2024-05-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/virtualNetworks/vnet1''
@@ -4608,7 +4998,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:28:02 GMT
+ - Mon, 10 Feb 2025 08:16:31 GMT
expires:
- '-1'
pragma:
@@ -4622,7 +5012,7 @@ interactions:
x-ms-failure-cause:
- gateway
x-msedge-ref:
- - 'Ref A: EA3BBC4E996644DFBE568C9637B58147 Ref B: TYO201151003031 Ref C: 2024-08-26T09:28:02Z'
+ - 'Ref A: CE0DE7ACBCC44A02A69EC28529E21490 Ref B: SEL221051504011 Ref C: 2025-02-10T08:16:31Z'
status:
code: 404
message: Not Found
@@ -4672,23 +5062,23 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/vm_deploy_ZjZJJhCYqrJpjVT8HbXiL2JsSIfpaVbY","name":"vm_deploy_ZjZJJhCYqrJpjVT8HbXiL2JsSIfpaVbY","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17754306880588672092","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-26T09:28:07.4196584Z","duration":"PT0.0006364S","correlationId":"5114bd6c-282c-481f-843d-c55c38943e90","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/vm_deploy_Yil6K6H1ZfbGq3U4nw79DgXTPnbUUDXI","name":"vm_deploy_Yil6K6H1ZfbGq3U4nw79DgXTPnbUUDXI","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8484740441278171831","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-02-10T08:16:37.7892193Z","duration":"PT0.0001061S","correlationId":"889d2921-b812-4dbf-bdbd-3c19e0cb5736","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/vm_deploy_ZjZJJhCYqrJpjVT8HbXiL2JsSIfpaVbY/operationStatuses/08584769424001507585?api-version=2022-09-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/vm_deploy_Yil6K6H1ZfbGq3U4nw79DgXTPnbUUDXI/operationStatuses/08584624314913826216?api-version=2022-09-01&t=638747721996990912&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=XrsXav8JvUqQdb6D6JHArW499TucNY7njWO4B_Z7nH8wb_Yri2zTPM-r3L1rqntq02Wr-mykg5C0pOKkVg5WZIKQNuP2ZUlbilpOj3dIHiArtPeOauXMBlAaurOSwahRm1qPDaBqRXLPsH4shkiLJDuy2kUmTv6ACewlA9RBG63lvURIn0ZcxbFoEOzwz4EXRrWuHu2eEWHhE1aUZiVmlffS9CfmyG0zzW6JbCV0s6_Oi2AgeL2Adiwu0zBuSu6nFBX5wj5ebjqsg6RMg3O0h39rN7V7ggfX0V5Yp-ZX-etOYEq87jB3skucjj2I_NP_4KS-nq3aTMdNgV9DxHp1FQ&h=L7nccddMIgZ46IRsaMhp6dGKIn8eql6yx60Z4N9qc7c
cache-control:
- no-cache
content-length:
- - '2396'
+ - '2395'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:28:07 GMT
+ - Mon, 10 Feb 2025 08:16:39 GMT
expires:
- '-1'
pragma:
@@ -4700,13 +5090,13 @@ interactions:
x-content-type-options:
- nosniff
x-ms-deployment-engine-version:
- - 1.95.0
+ - 1.224.0
x-ms-ratelimit-remaining-subscription-global-writes:
- '2999'
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: 2EA526BF21D34026B55D9FD54E2EA8C0 Ref B: TYO201100116027 Ref C: 2024-08-26T09:28:02Z'
+ - 'Ref A: 1CB8A5F768DB43B78CBED478B3BB8DEF Ref B: SEL221051503049 Ref C: 2025-02-10T08:16:32Z'
status:
code: 201
message: Created
@@ -4724,21 +5114,21 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769424001507585?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584624314913826216?api-version=2022-09-01&t=638747721996990912&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=XrsXav8JvUqQdb6D6JHArW499TucNY7njWO4B_Z7nH8wb_Yri2zTPM-r3L1rqntq02Wr-mykg5C0pOKkVg5WZIKQNuP2ZUlbilpOj3dIHiArtPeOauXMBlAaurOSwahRm1qPDaBqRXLPsH4shkiLJDuy2kUmTv6ACewlA9RBG63lvURIn0ZcxbFoEOzwz4EXRrWuHu2eEWHhE1aUZiVmlffS9CfmyG0zzW6JbCV0s6_Oi2AgeL2Adiwu0zBuSu6nFBX5wj5ebjqsg6RMg3O0h39rN7V7ggfX0V5Yp-ZX-etOYEq87jB3skucjj2I_NP_4KS-nq3aTMdNgV9DxHp1FQ&h=L7nccddMIgZ46IRsaMhp6dGKIn8eql6yx60Z4N9qc7c
response:
body:
- string: '{"status":"Running"}'
+ string: '{"status":"Accepted"}'
headers:
cache-control:
- no-cache
content-length:
- - '20'
+ - '21'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:28:07 GMT
+ - Mon, 10 Feb 2025 08:16:40 GMT
expires:
- '-1'
pragma:
@@ -4752,7 +5142,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 82ECBBF75E514CB1A32D8A0A3B1E01D6 Ref B: TYO201100116027 Ref C: 2024-08-26T09:28:08Z'
+ - 'Ref A: ACE5CA38273D4D6A9D6F86017A0152BD Ref B: SEL221051503049 Ref C: 2025-02-10T08:16:39Z'
status:
code: 200
message: OK
@@ -4770,9 +5160,9 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769424001507585?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584624314913826216?api-version=2022-09-01&t=638747721996990912&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=XrsXav8JvUqQdb6D6JHArW499TucNY7njWO4B_Z7nH8wb_Yri2zTPM-r3L1rqntq02Wr-mykg5C0pOKkVg5WZIKQNuP2ZUlbilpOj3dIHiArtPeOauXMBlAaurOSwahRm1qPDaBqRXLPsH4shkiLJDuy2kUmTv6ACewlA9RBG63lvURIn0ZcxbFoEOzwz4EXRrWuHu2eEWHhE1aUZiVmlffS9CfmyG0zzW6JbCV0s6_Oi2AgeL2Adiwu0zBuSu6nFBX5wj5ebjqsg6RMg3O0h39rN7V7ggfX0V5Yp-ZX-etOYEq87jB3skucjj2I_NP_4KS-nq3aTMdNgV9DxHp1FQ&h=L7nccddMIgZ46IRsaMhp6dGKIn8eql6yx60Z4N9qc7c
response:
body:
string: '{"status":"Running"}'
@@ -4784,7 +5174,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:28:38 GMT
+ - Mon, 10 Feb 2025 08:17:10 GMT
expires:
- '-1'
pragma:
@@ -4798,7 +5188,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: A9A0DD955EFE4ACCBE2253E7C3FC6827 Ref B: TYO201100116027 Ref C: 2024-08-26T09:28:38Z'
+ - 'Ref A: 04E8328B0C0A4054B2D9BCE2A9786C08 Ref B: SEL221051503049 Ref C: 2025-02-10T08:17:10Z'
status:
code: 200
message: OK
@@ -4816,9 +5206,9 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769424001507585?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584624314913826216?api-version=2022-09-01&t=638747721996990912&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=XrsXav8JvUqQdb6D6JHArW499TucNY7njWO4B_Z7nH8wb_Yri2zTPM-r3L1rqntq02Wr-mykg5C0pOKkVg5WZIKQNuP2ZUlbilpOj3dIHiArtPeOauXMBlAaurOSwahRm1qPDaBqRXLPsH4shkiLJDuy2kUmTv6ACewlA9RBG63lvURIn0ZcxbFoEOzwz4EXRrWuHu2eEWHhE1aUZiVmlffS9CfmyG0zzW6JbCV0s6_Oi2AgeL2Adiwu0zBuSu6nFBX5wj5ebjqsg6RMg3O0h39rN7V7ggfX0V5Yp-ZX-etOYEq87jB3skucjj2I_NP_4KS-nq3aTMdNgV9DxHp1FQ&h=L7nccddMIgZ46IRsaMhp6dGKIn8eql6yx60Z4N9qc7c
response:
body:
string: '{"status":"Succeeded"}'
@@ -4830,7 +5220,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:29:08 GMT
+ - Mon, 10 Feb 2025 08:17:41 GMT
expires:
- '-1'
pragma:
@@ -4844,7 +5234,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: D8073B5AE2F548EABDB51C596110DBBE Ref B: TYO201100116027 Ref C: 2024-08-26T09:29:09Z'
+ - 'Ref A: D2C71DB34A9E4BC68D5F3DD4BEBABFFE Ref B: SEL221051503049 Ref C: 2025-02-10T08:17:41Z'
status:
code: 200
message: OK
@@ -4862,21 +5252,21 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/vm_deploy_ZjZJJhCYqrJpjVT8HbXiL2JsSIfpaVbY","name":"vm_deploy_ZjZJJhCYqrJpjVT8HbXiL2JsSIfpaVbY","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17754306880588672092","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-26T09:29:00.2509959Z","duration":"PT52.8319739S","correlationId":"5114bd6c-282c-481f-843d-c55c38943e90","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vnet1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/vm_deploy_Yil6K6H1ZfbGq3U4nw79DgXTPnbUUDXI","name":"vm_deploy_Yil6K6H1ZfbGq3U4nw79DgXTPnbUUDXI","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8484740441278171831","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-02-10T08:17:35.8157443Z","duration":"PT58.0266311S","correlationId":"889d2921-b812-4dbf-bdbd-3c19e0cb5736","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vnet1"}]}}'
headers:
cache-control:
- no-cache
content-length:
- - '3214'
+ - '3213'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:29:09 GMT
+ - Mon, 10 Feb 2025 08:17:42 GMT
expires:
- '-1'
pragma:
@@ -4888,9 +5278,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3748'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 2B2811AA23514E42A2B42E8D53E671D1 Ref B: TYO201100116027 Ref C: 2024-08-26T09:29:09Z'
+ - 'Ref A: A412F5DB03DC417E817AD4CFF833DDCC Ref B: SEL221051503049 Ref C: 2025-02-10T08:17:41Z'
status:
code: 200
message: OK
@@ -4908,7 +5298,7 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2024-07-01
response:
@@ -4917,15 +5307,15 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"da436c59-5801-4d0a-85e0-28c27573534a\"\
+ : \"Succeeded\",\r\n \"vmId\": \"54a2ea1f-4afb-45f3-893c-6922a02adb77\"\
,\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"\
publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"\
sku\": \"10\",\r\n \"version\": \"latest\",\r\n \"exactVersion\"\
: \"0.20240430.1733\"\r\n },\r\n \"osDisk\": {\r\n \"osType\"\
- : \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_b122ee5d7eac4d42927ef3cf57489d73\"\
+ : \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_45c8ed2bafe644d1b162b5e8a5fdc7dc\"\
,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\
,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_b122ee5d7eac4d42927ef3cf57489d73\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_45c8ed2bafe644d1b162b5e8a5fdc7dc\"\
\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\
: 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\
: {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"debian\"\
@@ -4946,30 +5336,30 @@ interactions:
: [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\
,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"\
Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \
- \ \"time\": \"2024-08-26T09:28:58+00:00\"\r\n }\r\n \
+ \ \"time\": \"2025-02-10T08:17:40+00:00\"\r\n }\r\n \
\ ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\":\
- \ [\r\n {\r\n \"name\": \"vm1_OsDisk_1_b122ee5d7eac4d42927ef3cf57489d73\"\
+ \ [\r\n {\r\n \"name\": \"vm1_OsDisk_1_45c8ed2bafe644d1b162b5e8a5fdc7dc\"\
,\r\n \"statuses\": [\r\n {\r\n \"code\"\
: \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\
\n \"displayStatus\": \"Provisioning succeeded\",\r\n \
- \ \"time\": \"2024-08-26T09:28:23.5230953+00:00\"\r\n }\r\
+ \ \"time\": \"2025-02-10T08:16:58.6230415+00:00\"\r\n }\r\
\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\"\
- ,\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded/osProvisioningComplete\"\
- ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"OS provisioning\
- \ complete\",\r\n \"time\": \"2024-08-26T09:28:56.0236557+00:00\"\
+ ,\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\
+ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\
+ \ succeeded\",\r\n \"time\": \"2025-02-10T08:17:32.9205031+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-08-26T09:28:20.7730392+00:00\"\
+ \r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-02-10T08:16:56.0448718+00:00\"\
\r\n },\r\n \"etag\": \"\\\"1\\\"\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '4210'
+ - '4185'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:29:11 GMT
+ - Mon, 10 Feb 2025 08:17:43 GMT
expires:
- '-1'
pragma:
@@ -4980,12 +5370,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;33
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;33
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3748'
x-msedge-ref:
- - 'Ref A: 13A42E7E434E4AD7A341D2F6A1316230 Ref B: TYO201100114023 Ref C: 2024-08-26T09:29:11Z'
+ - 'Ref A: B2685893BD8B4B1BA4847EB28D4B397A Ref B: SEL221051802011 Ref C: 2025-02-10T08:17:42Z'
status:
code: 200
message: ''
@@ -5003,48 +5395,23 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2022-01-01
response:
body:
- string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- ,\r\n \"etag\": \"W/\\\"bc9ec0fd-c05a-401e-87bd-cb47a3873b1e\\\"\",\r\n \
- \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"2695515b-db9d-49fc-8485-b3610af951ef\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\
- ,\r\n \"etag\": \"W/\\\"bc9ec0fd-c05a-401e-87bd-cb47a3873b1e\\\"\"\
- ,\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\
- \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- \r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
- : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\
- \ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\
- internalDomainNameSuffix\": \"exrrnr2k2lze3gab5zc4tt3ymb.dx.internal.cloudapp.net\"\
- \r\n },\r\n \"macAddress\": \"00-0D-3A-59-AA-5D\",\r\n \"vnetEncryptionSupported\"\
- : false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\"\
- : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\
- \r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1\"\
- \r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\
- \n \"nicType\": \"Standard\",\r\n \"allowPort25Out\": true,\r\n \"\
- auxiliaryMode\": \"None\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\
- ,\r\n \"location\": \"westus\",\r\n \"kind\": \"Regular\"\r\n}"
+ string: '{"name":"vm1VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","etag":"W/\"d5be857f-8d2d-4ce4-a300-9a3f9ea934b4\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"31066a38-14f9-44e0-9bb4-36d5a7d702f1","ipConfigurations":[{"name":"ipconfigvm1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1","etag":"W/\"d5be857f-8d2d-4ce4-a300-9a3f9ea934b4\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"aavi1pqwyx2upmh2irkpi42jtf.dx.internal.cloudapp.net"},"macAddress":"00-22-48-0A-FB-E8","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":true,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"westus","kind":"Regular"}'
headers:
cache-control:
- no-cache
content-length:
- - '2433'
+ - '1987'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:29:11 GMT
+ - Mon, 10 Feb 2025 08:17:43 GMT
etag:
- - W/"bc9ec0fd-c05a-401e-87bd-cb47a3873b1e"
+ - W/"d5be857f-8d2d-4ce4-a300-9a3f9ea934b4"
expires:
- '-1'
pragma:
@@ -5056,11 +5423,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - d6084027-fc7c-47a4-be7e-975edda335a5
+ - 011dd41a-81fd-4f42-82c5-9821bbc79ddd
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3748'
x-msedge-ref:
- - 'Ref A: 4FE4101CDD784E1E81D70185BF398265 Ref B: TYO201100116047 Ref C: 2024-08-26T09:29:11Z'
+ - 'Ref A: D069858D535E4CADB6B0D92EBD8D7CE7 Ref B: SEL221051803033 Ref C: 2025-02-10T08:17:43Z'
status:
code: 200
message: OK
@@ -5078,33 +5445,23 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2022-01-01
response:
body:
- string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\
- ,\r\n \"etag\": \"W/\\\"76dce888-e3ec-43a9-b3f3-9053e523a31c\\\"\",\r\n \
- \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\
- \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1e20d982-581b-409f-a6f0-aa270e317540\"\
- ,\r\n \"ipAddress\": \"13.64.58.212\",\r\n \"publicIPAddressVersion\"\
- : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\"\
- : 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\
- \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\
- \n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\
- \r\n }\r\n}"
+ string: '{"name":"vm1PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","etag":"W/\"106eaea5-0d7d-4c7c-9439-8c0e0ef102a0\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"93be5c05-6f9c-44ea-ab3e-32e606e20f60","ipAddress":"52.159.248.142","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}'
headers:
cache-control:
- no-cache
content-length:
- - '925'
+ - '792'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:29:12 GMT
+ - Mon, 10 Feb 2025 08:17:44 GMT
etag:
- - W/"76dce888-e3ec-43a9-b3f3-9053e523a31c"
+ - W/"106eaea5-0d7d-4c7c-9439-8c0e0ef102a0"
expires:
- '-1'
pragma:
@@ -5116,11 +5473,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 923897d4-73e5-4a84-ad39-3579ec97861d
+ - c2249dd3-945e-4986-8613-19b63231ae3a
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 7A889BAB9E1D43AEABAB7AF2C28B88C4 Ref B: TYO201151006009 Ref C: 2024-08-26T09:29:12Z'
+ - 'Ref A: 876B061ED397477DB8CC08E58CA55632 Ref B: SEL221051504011 Ref C: 2025-02-10T08:17:44Z'
status:
code: 200
message: OK
@@ -5138,30 +5495,23 @@ interactions:
ParameterSetName:
- -g --vnet-name -n --default-outbound-access
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-01-01
response:
body:
- string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- ,\r\n \"etag\": \"W/\\\"33e79eeb-07d1-4cba-86d7-77a572c92c4a\\\"\",\r\n \
- \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
- addressPrefix\": \"10.0.0.0/24\",\r\n \"ipamPoolPrefixAllocations\": [],\r\
- \n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_PDGMCIUHNRG42HB2X6O5236UXHSRRL7MY7NRNGHANMMEGQE4V5RENGT/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1\"\
- \r\n }\r\n ],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\
- : \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\
- \n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}"
+ string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"b4cfdf64-9685-499f-bb4d-9cdd35e4af3a\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_A7ZNFRD6MS7GNL36J32MUS4AOJHYH6IIXMFDQWWJ4KWVB332PDYIWLA/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}'
headers:
cache-control:
- no-cache
content-length:
- - '873'
+ - '729'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:29:13 GMT
+ - Mon, 10 Feb 2025 08:17:45 GMT
etag:
- - W/"33e79eeb-07d1-4cba-86d7-77a572c92c4a"
+ - W/"b4cfdf64-9685-499f-bb4d-9cdd35e4af3a"
expires:
- '-1'
pragma:
@@ -5173,11 +5523,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 0059a534-8b23-46b2-b0d4-522f3b8b5ebc
+ - ab672480-91d7-4251-a73a-04c7566aea58
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: C808B06D68E24CCFB0F308236FAF9896 Ref B: TYO201100115029 Ref C: 2024-08-26T09:29:13Z'
+ - 'Ref A: 028D837E50B74CE6A3FD1317866350AF Ref B: SEL221051802009 Ref C: 2025-02-10T08:17:44Z'
status:
code: 200
message: OK
@@ -5202,33 +5552,25 @@ interactions:
ParameterSetName:
- -g --vnet-name -n --default-outbound-access
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-01-01
response:
body:
- string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- ,\r\n \"etag\": \"W/\\\"d618eb36-331d-49c8-b52a-222380b4d3ad\\\"\",\r\n \
- \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
- addressPrefix\": \"10.0.0.0/24\",\r\n \"ipamPoolPrefixAllocations\": [],\r\
- \n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\
- \r\n }\r\n ],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\
- : \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\
- ,\r\n \"defaultOutboundAccess\": false\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\
- \r\n}"
+ string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"f5365a19-d5cb-47c2-8914-ddb1dfc71fb3\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}'
headers:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cd19939b-075f-4364-b7ab-0bf62021b909?api-version=2024-01-01&t=638602613547354451&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=Yl4i0kWtZB83UlqW2k35ijA2Khky4sLu4t1c2U_ZELkSm1U7Bl6CIZZX5wdQpnEW9W2l108AJOlYx2Eg9k7tz4OO4cs8eAEy_InT3ksZJn7AsfekdyzBBefNr_AP0efqXTgCHmsqg_GVIdF7-S9C80IZoYpunH_yPedPz4cHa5TWA2c2g-rEzBjYcs4kTZJ_WbqveHqMWgUiAM1FRdG6viRbQwVw6lKdibsH3cnQCrE2AFw-wnmYkhM4CZGffyuZgCbpalzoYeHhvZSDLayz8p_-UwwQesiGx0tIC0HNGuG_aLRKd0b-w-5unaCaGnEhTd3Jl2s3hRANiEQciqvUOw&h=5vLYX-lorG2dU7feGa3yVazQ8MIAZRUNoL_9TkLDqMA
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/932df584-0485-4042-88bc-cb9987dcc483?api-version=2024-01-01&t=638747722665959695&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=Wk023xAMjLrlqdS1zM4waSCA_4ME-g-mhe7lTrcd22j-iwww4BdtIZ5-bXmwqLKacxGQIBGGirx4OQZBOgvg4imTfLyK7bi6eklQkZI8gWGJDTIofx2zmpw-DSohPr5Tte4655dB8fKLDw7GzOMQC1sCv5FsMKxg4fobpR5yrhXTMTtFMEEzr9l6rMUmXXz1TUka4zcp5XHDH5q8sodbE7NdIvXmDgvFfi4JHQSgOE67hn3iaeNNLSX8OPt1PPbBy9rRm5LVwJifG9If-qWIfEWnocZWFJl7GSALzlWd3w6_8LUZ5ton71elUWrFCwEC76nTVb45o2FVRGIify5jGg&h=gWWuPcrbbzQziph05tfni0ZK0LAddhj5ytC4XBOfHoA
cache-control:
- no-cache
content-length:
- - '860'
+ - '709'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:29:13 GMT
+ - Mon, 10 Feb 2025 08:17:46 GMT
expires:
- '-1'
pragma:
@@ -5240,13 +5582,13 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - a7c3af3c-a384-485a-89e7-e2d2accd46ab
+ - c22bf0ab-6c85-44fb-8fe2-0b73eb0130cd
x-ms-ratelimit-remaining-subscription-global-writes:
- - '2998'
+ - '2999'
x-ms-ratelimit-remaining-subscription-writes:
- - '198'
+ - '199'
x-msedge-ref:
- - 'Ref A: 2593738345AA4EA491904CE6F8F9235B Ref B: TYO201100115029 Ref C: 2024-08-26T09:29:14Z'
+ - 'Ref A: 475D8371D7934F02951EF318D2AC0852 Ref B: SEL221051802009 Ref C: 2025-02-10T08:17:45Z'
status:
code: 200
message: OK
@@ -5264,21 +5606,21 @@ interactions:
ParameterSetName:
- -g --vnet-name -n --default-outbound-access
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cd19939b-075f-4364-b7ab-0bf62021b909?api-version=2024-01-01&t=638602613547354451&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=Yl4i0kWtZB83UlqW2k35ijA2Khky4sLu4t1c2U_ZELkSm1U7Bl6CIZZX5wdQpnEW9W2l108AJOlYx2Eg9k7tz4OO4cs8eAEy_InT3ksZJn7AsfekdyzBBefNr_AP0efqXTgCHmsqg_GVIdF7-S9C80IZoYpunH_yPedPz4cHa5TWA2c2g-rEzBjYcs4kTZJ_WbqveHqMWgUiAM1FRdG6viRbQwVw6lKdibsH3cnQCrE2AFw-wnmYkhM4CZGffyuZgCbpalzoYeHhvZSDLayz8p_-UwwQesiGx0tIC0HNGuG_aLRKd0b-w-5unaCaGnEhTd3Jl2s3hRANiEQciqvUOw&h=5vLYX-lorG2dU7feGa3yVazQ8MIAZRUNoL_9TkLDqMA
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/932df584-0485-4042-88bc-cb9987dcc483?api-version=2024-01-01&t=638747722665959695&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=Wk023xAMjLrlqdS1zM4waSCA_4ME-g-mhe7lTrcd22j-iwww4BdtIZ5-bXmwqLKacxGQIBGGirx4OQZBOgvg4imTfLyK7bi6eklQkZI8gWGJDTIofx2zmpw-DSohPr5Tte4655dB8fKLDw7GzOMQC1sCv5FsMKxg4fobpR5yrhXTMTtFMEEzr9l6rMUmXXz1TUka4zcp5XHDH5q8sodbE7NdIvXmDgvFfi4JHQSgOE67hn3iaeNNLSX8OPt1PPbBy9rRm5LVwJifG9If-qWIfEWnocZWFJl7GSALzlWd3w6_8LUZ5ton71elUWrFCwEC76nTVb45o2FVRGIify5jGg&h=gWWuPcrbbzQziph05tfni0ZK0LAddhj5ytC4XBOfHoA
response:
body:
- string: "{\r\n \"status\": \"Succeeded\"\r\n}"
+ string: '{"status":"Succeeded"}'
headers:
cache-control:
- no-cache
content-length:
- - '29'
+ - '22'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:29:14 GMT
+ - Mon, 10 Feb 2025 08:17:46 GMT
expires:
- '-1'
pragma:
@@ -5290,11 +5632,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 15112909-43c5-4080-b503-f74aa930847a
+ - 261c2d34-1e2c-412f-90df-4593bca3160e
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3748'
x-msedge-ref:
- - 'Ref A: 750191E5F2FE43C8B60465B032A4DF07 Ref B: TYO201100115029 Ref C: 2024-08-26T09:29:14Z'
+ - 'Ref A: 895A0413F87343A1A643108F58B2E8A2 Ref B: SEL221051802009 Ref C: 2025-02-10T08:17:46Z'
status:
code: 200
message: OK
@@ -5312,31 +5654,23 @@ interactions:
ParameterSetName:
- -g --vnet-name -n --default-outbound-access
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-01-01
response:
body:
- string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- ,\r\n \"etag\": \"W/\\\"357bbcd1-7348-4514-aa03-8f3413631deb\\\"\",\r\n \
- \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
- addressPrefix\": \"10.0.0.0/24\",\r\n \"ipamPoolPrefixAllocations\": [],\r\
- \n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_PDGMCIUHNRG42HB2X6O5236UXHSRRL7MY7NRNGHANMMEGQE4V5RENGT/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1\"\
- \r\n }\r\n ],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\
- : \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\
- ,\r\n \"defaultOutboundAccess\": false\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\
- \r\n}"
+ string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"2df210f5-0061-4ccf-98b2-e39c93fde453\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_A7ZNFRD6MS7GNL36J32MUS4AOJHYH6IIXMFDQWWJ4KWVB332PDYIWLA/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}'
headers:
cache-control:
- no-cache
content-length:
- - '910'
+ - '759'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:29:14 GMT
+ - Mon, 10 Feb 2025 08:17:47 GMT
etag:
- - W/"357bbcd1-7348-4514-aa03-8f3413631deb"
+ - W/"2df210f5-0061-4ccf-98b2-e39c93fde453"
expires:
- '-1'
pragma:
@@ -5348,11 +5682,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - ce266ffd-1426-4e75-99da-102e03403464
+ - 2a4d4991-2da4-44af-8200-5529ce62e21e
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 60BD4F6925EE45C1B1505C85940B316A Ref B: TYO201100115029 Ref C: 2024-08-26T09:29:15Z'
+ - 'Ref A: D7D96C0F82FD4C7D916E72791C147859 Ref B: SEL221051802009 Ref C: 2025-02-10T08:17:46Z'
status:
code: 200
message: OK
@@ -5370,7 +5704,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-07-01
response:
@@ -5379,15 +5713,15 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"da436c59-5801-4d0a-85e0-28c27573534a\"\
+ : \"Succeeded\",\r\n \"vmId\": \"54a2ea1f-4afb-45f3-893c-6922a02adb77\"\
,\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"\
publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"\
sku\": \"10\",\r\n \"version\": \"latest\",\r\n \"exactVersion\"\
: \"0.20240430.1733\"\r\n },\r\n \"osDisk\": {\r\n \"osType\"\
- : \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_b122ee5d7eac4d42927ef3cf57489d73\"\
+ : \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_45c8ed2bafe644d1b162b5e8a5fdc7dc\"\
,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\
,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_b122ee5d7eac4d42927ef3cf57489d73\"\
+ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_45c8ed2bafe644d1b162b5e8a5fdc7dc\"\
\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\
: 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\
: {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"debian\"\
@@ -5402,7 +5736,7 @@ interactions:
\ \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\"\
: true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\
:\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- }]},\r\n \"timeCreated\": \"2024-08-26T09:28:20.7730392+00:00\"\r\n },\r\
+ }]},\r\n \"timeCreated\": \"2025-02-10T08:16:56.0448718+00:00\"\r\n },\r\
\n \"etag\": \"\\\"1\\\"\"\r\n}"
headers:
cache-control:
@@ -5412,7 +5746,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:29:15 GMT
+ - Mon, 10 Feb 2025 08:17:47 GMT
etag:
- '"1"'
expires:
@@ -5425,12 +5759,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGetSubscriptionMaximum;23998,Microsoft.Compute/LowCostGetResource;32
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996,Microsoft.Compute/LowCostGetResource;32
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 30F82692D0F8403BBE156F7A8957608A Ref B: TYO201100115049 Ref C: 2024-08-26T09:29:16Z'
+ - 'Ref A: 1A608C9ABA8147A191C18581765DEED7 Ref B: SEL221051805051 Ref C: 2025-02-10T08:17:47Z'
status:
code: 200
message: ''
@@ -5450,7 +5786,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1/deallocate?api-version=2022-11-01
response:
@@ -5460,17 +5796,17 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e63bbc8c-417b-4956-8953-13c873792172?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01&t=638602613576844790&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=KHOKQsAHDHvCvQnah8k2Vd0WehwEFod30cp3KXVNrDfrT2cP1dLcYmsLLaIZgOisJgzo8ZoBV4cOmY5EfZ8Bt4EdaU_z9MwNW-Mnsx5hq0I0IC4Km01V-fC8wbjdLjbUhwIlc55zwqLQipvO5Jiryu4LWLUPQjdCuS2mkoAeO3rsk9Zm5hEaDKsAzIxYWbA3nEJoTnXJJUjSQ-JSCINsqTpr7Rmobvh9XhhDtbVKelGJ6S_pJdJjCl0tjrbM2oRLOEC0KLKIQOGtNYWjAqJyzTNjaIb6grsGojXVhYjx4ObcftByIyHd_E317O4AV_cO8iMYZOLxn9JuZBsp2Bd_kA&h=uFGLI3mJnI2mCWiYPuIT7Ag6GV8CvMcKUSpr32ZE7PI
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c32493e6-c7db-4807-af81-3249436d6103?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01&t=638747722691961783&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=TDs6D_myZJAO6ZgLh0Kup_h7cM4J-mjA81zwLhdk50H6vYlTzPpuzsp3FZuEBRZkKILzRViTz7Yp4RAxFRSdRtJmBrGq2oJx4euZ6OCovgSf9qJWOlKICz_69RBBr1YHnzA7Rhnx3YRRQs_jufk63OA5ApNx-4oSftUh_BGkDN21xejf-BKQUcSJ1iFUEBgmiCgEQhvx-Z0XHMeB_cQ7HHkfIwybfOaao9E3hm1tf0LCnmB9nvpupro4WGHJMpu9JYI9uE2HGBRoeSEHIfkyTHbvAqBJJLNJrqS_MERgx4NSxxYaZfjRj0sySexDDLFnxT_L5XWOt8P2OqF7DLfqHw&h=KdLxSXrEAZMCrziVQolzHg53e4FzFtgo_277YuqO_cQ
cache-control:
- no-cache
content-length:
- '0'
date:
- - Mon, 26 Aug 2024 09:29:17 GMT
+ - Mon, 10 Feb 2025 08:17:48 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e63bbc8c-417b-4956-8953-13c873792172?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2022-11-01&t=638602613577001019&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=Xryzd2snFvxthUJ1-SNIgdXmaDNSa4zi_vMAL-eIPZNf-VkNmBZhfP-Z6R88Trk10Qqv0PJo0eCO0Flai5hbInE338ozzv_wp-tbuHW_CdnH5hJdf7ML0tDEKKGQavH9DD8AamqxMZvDcuaJsD9ar07W7T9e1TSW0Xhkr3pVAenAhcoS5f6KU72WnGPPuyN_HT5L0WIh3GEwl4l4fviUwkAUGM0YqZXc2DHda04yZvclf-CK9ngaDimfvb1rCHTcruRaoHtgACVZKv2ibX1sLQVfT6exhLc5CEUWh18GlBdh8ZaQNY2QAyhF7HLgpIfSFDokrUSVZWszVZsLaGeb1g&h=bRlGDhbNfQb-uGc_ffYRqHkRMlsIwyzmc-BbZTmUiLg
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c32493e6-c7db-4807-af81-3249436d6103?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2022-11-01&t=638747722692118031&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=D0UoWk3c_xxphsZoLMHw5kJkHT59rqshSD1lAvWVmzYT5n8GomvWP4ywsgArXq1WyK9OxI82NPmmJmqbT260UGUMLiIyBSaz1n21-b555caheiotoLbpp2KTiMCLWNBvT8qNsggjr1ieBOd3plsDOqrD7isK3ZboE25YbDwvRZvhvaZCiR7Fo83TNN7S_ctQn_fH04qx46bJAXGFQKl_nEDWsD3zoL1Aya179CbuUNRW8qxZOeMGE86W7Df_pjk8NjT9RVhb6QBI4kc7TaNrUitxfa3cjL4_YU8Apu3acv2oJY8K7Gkj79mNKkan24q_WkFJNNLIG1-NLdEo0kwvSg&h=vybreU2mWD7hT5Q5dKKiuFEu6QoFG6_ksLgaQRHc6VY
pragma:
- no-cache
strict-transport-security:
@@ -5479,6 +5815,8 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/DeleteVMSubscriptionMaximum;1499,Microsoft.Compute/DeleteVMResource;11
x-ms-ratelimit-remaining-subscription-global-writes:
@@ -5486,7 +5824,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: CFC8F2A3CC5142F0A12D8BBB6A8E9260 Ref B: TYO201100115023 Ref C: 2024-08-26T09:29:17Z'
+ - 'Ref A: 605F86FF99B041029CFEB2049D23828E Ref B: SEL221051803035 Ref C: 2025-02-10T08:17:48Z'
status:
code: 202
message: ''
@@ -5504,23 +5842,23 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e63bbc8c-417b-4956-8953-13c873792172?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01&t=638602613576844790&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=KHOKQsAHDHvCvQnah8k2Vd0WehwEFod30cp3KXVNrDfrT2cP1dLcYmsLLaIZgOisJgzo8ZoBV4cOmY5EfZ8Bt4EdaU_z9MwNW-Mnsx5hq0I0IC4Km01V-fC8wbjdLjbUhwIlc55zwqLQipvO5Jiryu4LWLUPQjdCuS2mkoAeO3rsk9Zm5hEaDKsAzIxYWbA3nEJoTnXJJUjSQ-JSCINsqTpr7Rmobvh9XhhDtbVKelGJ6S_pJdJjCl0tjrbM2oRLOEC0KLKIQOGtNYWjAqJyzTNjaIb6grsGojXVhYjx4ObcftByIyHd_E317O4AV_cO8iMYZOLxn9JuZBsp2Bd_kA&h=uFGLI3mJnI2mCWiYPuIT7Ag6GV8CvMcKUSpr32ZE7PI
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c32493e6-c7db-4807-af81-3249436d6103?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01&t=638747722691961783&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=TDs6D_myZJAO6ZgLh0Kup_h7cM4J-mjA81zwLhdk50H6vYlTzPpuzsp3FZuEBRZkKILzRViTz7Yp4RAxFRSdRtJmBrGq2oJx4euZ6OCovgSf9qJWOlKICz_69RBBr1YHnzA7Rhnx3YRRQs_jufk63OA5ApNx-4oSftUh_BGkDN21xejf-BKQUcSJ1iFUEBgmiCgEQhvx-Z0XHMeB_cQ7HHkfIwybfOaao9E3hm1tf0LCnmB9nvpupro4WGHJMpu9JYI9uE2HGBRoeSEHIfkyTHbvAqBJJLNJrqS_MERgx4NSxxYaZfjRj0sySexDDLFnxT_L5XWOt8P2OqF7DLfqHw&h=KdLxSXrEAZMCrziVQolzHg53e4FzFtgo_277YuqO_cQ
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:29:17.6028432+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"e63bbc8c-417b-4956-8953-13c873792172\"\
+ string: "{\r\n \"startTime\": \"2025-02-10T08:17:49.108265+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"c32493e6-c7db-4807-af81-3249436d6103\"\
\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '134'
+ - '133'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:29:17 GMT
+ - Mon, 10 Feb 2025 08:17:48 GMT
expires:
- '-1'
pragma:
@@ -5531,12 +5869,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14990
+ - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14997
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3748'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 30E5AE43C78C49078480883198CA6229 Ref B: TYO201100115023 Ref C: 2024-08-26T09:29:17Z'
+ - 'Ref A: 4C0C7FA4B4484DE58CC7D2C08986CAE7 Ref B: SEL221051803035 Ref C: 2025-02-10T08:17:49Z'
status:
code: 200
message: ''
@@ -5554,23 +5894,23 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e63bbc8c-417b-4956-8953-13c873792172?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01&t=638602613576844790&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=KHOKQsAHDHvCvQnah8k2Vd0WehwEFod30cp3KXVNrDfrT2cP1dLcYmsLLaIZgOisJgzo8ZoBV4cOmY5EfZ8Bt4EdaU_z9MwNW-Mnsx5hq0I0IC4Km01V-fC8wbjdLjbUhwIlc55zwqLQipvO5Jiryu4LWLUPQjdCuS2mkoAeO3rsk9Zm5hEaDKsAzIxYWbA3nEJoTnXJJUjSQ-JSCINsqTpr7Rmobvh9XhhDtbVKelGJ6S_pJdJjCl0tjrbM2oRLOEC0KLKIQOGtNYWjAqJyzTNjaIb6grsGojXVhYjx4ObcftByIyHd_E317O4AV_cO8iMYZOLxn9JuZBsp2Bd_kA&h=uFGLI3mJnI2mCWiYPuIT7Ag6GV8CvMcKUSpr32ZE7PI
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c32493e6-c7db-4807-af81-3249436d6103?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2022-11-01&t=638747722691961783&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=TDs6D_myZJAO6ZgLh0Kup_h7cM4J-mjA81zwLhdk50H6vYlTzPpuzsp3FZuEBRZkKILzRViTz7Yp4RAxFRSdRtJmBrGq2oJx4euZ6OCovgSf9qJWOlKICz_69RBBr1YHnzA7Rhnx3YRRQs_jufk63OA5ApNx-4oSftUh_BGkDN21xejf-BKQUcSJ1iFUEBgmiCgEQhvx-Z0XHMeB_cQ7HHkfIwybfOaao9E3hm1tf0LCnmB9nvpupro4WGHJMpu9JYI9uE2HGBRoeSEHIfkyTHbvAqBJJLNJrqS_MERgx4NSxxYaZfjRj0sySexDDLFnxT_L5XWOt8P2OqF7DLfqHw&h=KdLxSXrEAZMCrziVQolzHg53e4FzFtgo_277YuqO_cQ
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:29:17.6028432+00:00\",\r\n \"\
- endTime\": \"2024-08-26T09:29:33.4930608+00:00\",\r\n \"status\": \"Succeeded\"\
- ,\r\n \"name\": \"e63bbc8c-417b-4956-8953-13c873792172\"\r\n}"
+ string: "{\r\n \"startTime\": \"2025-02-10T08:17:49.108265+00:00\",\r\n \"\
+ endTime\": \"2025-02-10T08:18:07.1710663+00:00\",\r\n \"status\": \"Succeeded\"\
+ ,\r\n \"name\": \"c32493e6-c7db-4807-af81-3249436d6103\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '184'
+ - '183'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:29:48 GMT
+ - Mon, 10 Feb 2025 08:18:18 GMT
expires:
- '-1'
pragma:
@@ -5581,12 +5921,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14996
+ - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14998
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 3BF7BBFB473B4D1C9CC0FA46D242F487 Ref B: TYO201100115023 Ref C: 2024-08-26T09:29:48Z'
+ - 'Ref A: D2043CF8383D44FCBE9446C344034782 Ref B: SEL221051803035 Ref C: 2025-02-10T08:18:19Z'
status:
code: 200
message: ''
@@ -5604,7 +5946,7 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-07-01
response:
@@ -5613,14 +5955,14 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"da436c59-5801-4d0a-85e0-28c27573534a\"\
+ : \"Succeeded\",\r\n \"vmId\": \"54a2ea1f-4afb-45f3-893c-6922a02adb77\"\
,\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"\
publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"\
sku\": \"10\",\r\n \"version\": \"latest\",\r\n \"exactVersion\"\
: \"0.20240430.1733\"\r\n },\r\n \"osDisk\": {\r\n \"osType\"\
- : \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_b122ee5d7eac4d42927ef3cf57489d73\"\
+ : \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_45c8ed2bafe644d1b162b5e8a5fdc7dc\"\
,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\
- ,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_b122ee5d7eac4d42927ef3cf57489d73\"\
+ ,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_45c8ed2bafe644d1b162b5e8a5fdc7dc\"\
\r\n },\r\n \"deleteOption\": \"Detach\"\r\n },\r\n \
\ \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\"\
: \"vm1\",\r\n \"adminUsername\": \"debian\",\r\n \"linuxConfiguration\"\
@@ -5635,7 +5977,7 @@ interactions:
\ \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\"\
: true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\
:\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- }]},\r\n \"timeCreated\": \"2024-08-26T09:28:20.7730392+00:00\"\r\n },\r\
+ }]},\r\n \"timeCreated\": \"2025-02-10T08:16:56.0448718+00:00\"\r\n },\r\
\n \"etag\": \"\\\"4\\\"\"\r\n}"
headers:
cache-control:
@@ -5645,7 +5987,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:30:18 GMT
+ - Mon, 10 Feb 2025 08:18:50 GMT
etag:
- '"4"'
expires:
@@ -5658,20 +6000,22 @@ interactions:
- 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;35
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23998,Microsoft.Compute/LowCostGetResource;35
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3748'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 2D0413D8C29C4416B3DEF3BDFF808004 Ref B: TYO201151001040 Ref C: 2024-08-26T09:30:19Z'
+ - 'Ref A: 78E482EB8DB5489DAE5293CB38091F5C Ref B: SEL221051503011 Ref C: 2025-02-10T08:18:50Z'
status:
code: 200
message: ''
- request:
body: '{"location": "westus", "tags": {}, "properties": {"hardwareProfile": {"vmSize":
"Standard_DS1_v2"}, "storageProfile": {"osDisk": {"osType": "Linux", "name":
- "vm1_OsDisk_1_b122ee5d7eac4d42927ef3cf57489d73", "caching": "ReadWrite", "createOption":
- "FromImage", "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_b122ee5d7eac4d42927ef3cf57489d73"},
+ "vm1_OsDisk_1_45c8ed2bafe644d1b162b5e8a5fdc7dc", "caching": "ReadWrite", "createOption":
+ "FromImage", "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_45c8ed2bafe644d1b162b5e8a5fdc7dc"},
"deleteOption": "Detach"}, "dataDisks": []}, "osProfile": {"computerName": "vm1",
"adminUsername": "debian", "linuxConfiguration": {"disablePasswordAuthentication":
true, "ssh": {"publicKeys": [{"path": "/home/debian/.ssh/authorized_keys", "keyData":
@@ -5697,7 +6041,7 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-07-01
response:
@@ -5706,15 +6050,15 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"vmId\": \"da436c59-5801-4d0a-85e0-28c27573534a\"\
- ,\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_PDGMCIUHNRG42HB2X6O5236UXHSRRL7MY7NRNGHANMMEGQE4V5RENGT/providers/Microsoft.Compute/proximityPlacementGroups/ppg1\"\
+ : \"Updating\",\r\n \"vmId\": \"54a2ea1f-4afb-45f3-893c-6922a02adb77\"\
+ ,\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_A7ZNFRD6MS7GNL36J32MUS4AOJHYH6IIXMFDQWWJ4KWVB332PDYIWLA/providers/Microsoft.Compute/proximityPlacementGroups/ppg1\"\
\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n\
\ \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\
\n \"sku\": \"10\",\r\n \"version\": \"latest\",\r\n \
\ \"exactVersion\": \"0.20240430.1733\"\r\n },\r\n \"osDisk\": {\r\
- \n \"osType\": \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_b122ee5d7eac4d42927ef3cf57489d73\"\
+ \n \"osType\": \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_45c8ed2bafe644d1b162b5e8a5fdc7dc\"\
,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\
- ,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_b122ee5d7eac4d42927ef3cf57489d73\"\
+ ,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_45c8ed2bafe644d1b162b5e8a5fdc7dc\"\
\r\n },\r\n \"deleteOption\": \"Detach\"\r\n },\r\n \
\ \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\"\
: \"vm1\",\r\n \"adminUsername\": \"debian\",\r\n \"linuxConfiguration\"\
@@ -5729,13 +6073,13 @@ interactions:
\ \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\"\
: true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\
:\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- }]},\r\n \"timeCreated\": \"2024-08-26T09:28:20.7730392+00:00\"\r\n },\r\
+ }]},\r\n \"timeCreated\": \"2025-02-10T08:16:56.0448718+00:00\"\r\n },\r\
\n \"etag\": \"\\\"5\\\"\"\r\n}"
headers:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/fe1f18a7-85ec-4d65-9ae7-3363c6099afd?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-07-01&t=638602614218483118&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=RzRt6XenFaHS6ZrBbCe8XeBh5y1CnByD0Fj1weRPw9xyB0II2RAo-nmeHlODS0YYgCYUMhnpWEDLFMcOrx01pi6Ae2cQiO3WS1n7PxJxmmviiZpQ-QB6rkEcqLMveQBZPn6pZhvz-HI8yY_K6ucudviTTKec-qQhwhnGMt432PNZKndliRsX2axUMF5sGbVonfJAwH64G2c_EmGQtjVkHHE7HrviN7ehF2N9-AaD6_Z-MhLirwV8fPY9UTgTqJiGTOxgP1pT-2XsF0AO8SCHDtAMsU87skQLRZsKh4ekNooBfXssFdMQbgLnTYhwyfGO7fmJJabmGJAQENokPN5_tw&h=WKTr5ysrPJ6mEBSdjlzre-uexRrse2ohDXd1qcnnK9A
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/85ec88b6-9cd5-4020-977b-3026fcfb533b?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-07-01&t=638747723331572596&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=q-krtIw20yhgvi2SLjekL242Qpr1b8yNKZTFhs-EWb8CL41uiYiQWdb5q1rl5YduSgHBvJu3Z2sXsWJXa6i8HnQbw44cHsQQLhsP5QHQ2006NYuM88-jdcis0y7uVVa6sX7Lp1ZJTEYb51N7TmmgV3v4dbzV9VMOLzKabx8iPjqGgxvoyvfkmrCMQG2Pv3NfEXSFcnLEhj1Vvzq4E1_lNocrNRUOX29DZjUYErf4BqsXngHmDvF6uOQZcfsIJ2SKCP2BGESqLLYkq7bufildsIvLIjC74FxgtEUGN8XGpk_op4bzd3lAUZT3MzDu6IA0ZgM1cyimb_bYi8-PZE4vgw&h=68B2ySK3cF0Towscv29_NKeUfHA2G8J8CR4utz9ZC2I
cache-control:
- no-cache
content-length:
@@ -5743,7 +6087,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:30:21 GMT
+ - Mon, 10 Feb 2025 08:18:52 GMT
etag:
- '"5"'
expires:
@@ -5756,14 +6100,16 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/PutVMSubscriptionMaximum;1498,Microsoft.Compute/PutVMResource;11
+ - Microsoft.Compute/PutVMSubscriptionMaximum;1499,Microsoft.Compute/PutVMResource;11
x-ms-ratelimit-remaining-subscription-global-writes:
- '2999'
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: F9625E520077473AB26C8FC5C8B545E3 Ref B: TYO201100113025 Ref C: 2024-08-26T09:30:20Z'
+ - 'Ref A: BA8BBABFA8784CD79498ED19E3704BA0 Ref B: SEL221051503023 Ref C: 2025-02-10T08:18:50Z'
status:
code: 200
message: ''
@@ -5781,13 +6127,13 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/fe1f18a7-85ec-4d65-9ae7-3363c6099afd?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-07-01&t=638602614218483118&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=RzRt6XenFaHS6ZrBbCe8XeBh5y1CnByD0Fj1weRPw9xyB0II2RAo-nmeHlODS0YYgCYUMhnpWEDLFMcOrx01pi6Ae2cQiO3WS1n7PxJxmmviiZpQ-QB6rkEcqLMveQBZPn6pZhvz-HI8yY_K6ucudviTTKec-qQhwhnGMt432PNZKndliRsX2axUMF5sGbVonfJAwH64G2c_EmGQtjVkHHE7HrviN7ehF2N9-AaD6_Z-MhLirwV8fPY9UTgTqJiGTOxgP1pT-2XsF0AO8SCHDtAMsU87skQLRZsKh4ekNooBfXssFdMQbgLnTYhwyfGO7fmJJabmGJAQENokPN5_tw&h=WKTr5ysrPJ6mEBSdjlzre-uexRrse2ohDXd1qcnnK9A
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/85ec88b6-9cd5-4020-977b-3026fcfb533b?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-07-01&t=638747723331572596&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=q-krtIw20yhgvi2SLjekL242Qpr1b8yNKZTFhs-EWb8CL41uiYiQWdb5q1rl5YduSgHBvJu3Z2sXsWJXa6i8HnQbw44cHsQQLhsP5QHQ2006NYuM88-jdcis0y7uVVa6sX7Lp1ZJTEYb51N7TmmgV3v4dbzV9VMOLzKabx8iPjqGgxvoyvfkmrCMQG2Pv3NfEXSFcnLEhj1Vvzq4E1_lNocrNRUOX29DZjUYErf4BqsXngHmDvF6uOQZcfsIJ2SKCP2BGESqLLYkq7bufildsIvLIjC74FxgtEUGN8XGpk_op4bzd3lAUZT3MzDu6IA0ZgM1cyimb_bYi8-PZE4vgw&h=68B2ySK3cF0Towscv29_NKeUfHA2G8J8CR4utz9ZC2I
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:30:21.5095247+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"fe1f18a7-85ec-4d65-9ae7-3363c6099afd\"\
+ string: "{\r\n \"startTime\": \"2025-02-10T08:18:52.7655453+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"85ec88b6-9cd5-4020-977b-3026fcfb533b\"\
\r\n}"
headers:
cache-control:
@@ -5797,7 +6143,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:30:21 GMT
+ - Mon, 10 Feb 2025 08:18:53 GMT
expires:
- '-1'
pragma:
@@ -5808,12 +6154,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14987
+ - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14997
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: F788CC22955D4F42BB1579C94FBA9D08 Ref B: TYO201100113025 Ref C: 2024-08-26T09:30:22Z'
+ - 'Ref A: 7E73AAADABA54C3A83FE1D1D0737C156 Ref B: SEL221051503023 Ref C: 2025-02-10T08:18:53Z'
status:
code: 200
message: ''
@@ -5831,13 +6179,13 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/fe1f18a7-85ec-4d65-9ae7-3363c6099afd?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-07-01&t=638602614218483118&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=RzRt6XenFaHS6ZrBbCe8XeBh5y1CnByD0Fj1weRPw9xyB0II2RAo-nmeHlODS0YYgCYUMhnpWEDLFMcOrx01pi6Ae2cQiO3WS1n7PxJxmmviiZpQ-QB6rkEcqLMveQBZPn6pZhvz-HI8yY_K6ucudviTTKec-qQhwhnGMt432PNZKndliRsX2axUMF5sGbVonfJAwH64G2c_EmGQtjVkHHE7HrviN7ehF2N9-AaD6_Z-MhLirwV8fPY9UTgTqJiGTOxgP1pT-2XsF0AO8SCHDtAMsU87skQLRZsKh4ekNooBfXssFdMQbgLnTYhwyfGO7fmJJabmGJAQENokPN5_tw&h=WKTr5ysrPJ6mEBSdjlzre-uexRrse2ohDXd1qcnnK9A
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/85ec88b6-9cd5-4020-977b-3026fcfb533b?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-07-01&t=638747723331572596&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=q-krtIw20yhgvi2SLjekL242Qpr1b8yNKZTFhs-EWb8CL41uiYiQWdb5q1rl5YduSgHBvJu3Z2sXsWJXa6i8HnQbw44cHsQQLhsP5QHQ2006NYuM88-jdcis0y7uVVa6sX7Lp1ZJTEYb51N7TmmgV3v4dbzV9VMOLzKabx8iPjqGgxvoyvfkmrCMQG2Pv3NfEXSFcnLEhj1Vvzq4E1_lNocrNRUOX29DZjUYErf4BqsXngHmDvF6uOQZcfsIJ2SKCP2BGESqLLYkq7bufildsIvLIjC74FxgtEUGN8XGpk_op4bzd3lAUZT3MzDu6IA0ZgM1cyimb_bYi8-PZE4vgw&h=68B2ySK3cF0Towscv29_NKeUfHA2G8J8CR4utz9ZC2I
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:30:21.5095247+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"fe1f18a7-85ec-4d65-9ae7-3363c6099afd\"\
+ string: "{\r\n \"startTime\": \"2025-02-10T08:18:52.7655453+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"85ec88b6-9cd5-4020-977b-3026fcfb533b\"\
\r\n}"
headers:
cache-control:
@@ -5847,7 +6195,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:30:54 GMT
+ - Mon, 10 Feb 2025 08:19:23 GMT
expires:
- '-1'
pragma:
@@ -5858,12 +6206,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997
+ - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3748'
x-msedge-ref:
- - 'Ref A: 502A7E58FC8A4F1188DC5F742F5BB2A2 Ref B: TYO201100113025 Ref C: 2024-08-26T09:30:54Z'
+ - 'Ref A: E2B83C9B773E4E58BD70E75E4CD22392 Ref B: SEL221051503023 Ref C: 2025-02-10T08:19:23Z'
status:
code: 200
message: ''
@@ -5881,13 +6231,13 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/fe1f18a7-85ec-4d65-9ae7-3363c6099afd?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-07-01&t=638602614218483118&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=RzRt6XenFaHS6ZrBbCe8XeBh5y1CnByD0Fj1weRPw9xyB0II2RAo-nmeHlODS0YYgCYUMhnpWEDLFMcOrx01pi6Ae2cQiO3WS1n7PxJxmmviiZpQ-QB6rkEcqLMveQBZPn6pZhvz-HI8yY_K6ucudviTTKec-qQhwhnGMt432PNZKndliRsX2axUMF5sGbVonfJAwH64G2c_EmGQtjVkHHE7HrviN7ehF2N9-AaD6_Z-MhLirwV8fPY9UTgTqJiGTOxgP1pT-2XsF0AO8SCHDtAMsU87skQLRZsKh4ekNooBfXssFdMQbgLnTYhwyfGO7fmJJabmGJAQENokPN5_tw&h=WKTr5ysrPJ6mEBSdjlzre-uexRrse2ohDXd1qcnnK9A
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/85ec88b6-9cd5-4020-977b-3026fcfb533b?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-07-01&t=638747723331572596&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=q-krtIw20yhgvi2SLjekL242Qpr1b8yNKZTFhs-EWb8CL41uiYiQWdb5q1rl5YduSgHBvJu3Z2sXsWJXa6i8HnQbw44cHsQQLhsP5QHQ2006NYuM88-jdcis0y7uVVa6sX7Lp1ZJTEYb51N7TmmgV3v4dbzV9VMOLzKabx8iPjqGgxvoyvfkmrCMQG2Pv3NfEXSFcnLEhj1Vvzq4E1_lNocrNRUOX29DZjUYErf4BqsXngHmDvF6uOQZcfsIJ2SKCP2BGESqLLYkq7bufildsIvLIjC74FxgtEUGN8XGpk_op4bzd3lAUZT3MzDu6IA0ZgM1cyimb_bYi8-PZE4vgw&h=68B2ySK3cF0Towscv29_NKeUfHA2G8J8CR4utz9ZC2I
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:30:21.5095247+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"fe1f18a7-85ec-4d65-9ae7-3363c6099afd\"\
+ string: "{\r\n \"startTime\": \"2025-02-10T08:18:52.7655453+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"85ec88b6-9cd5-4020-977b-3026fcfb533b\"\
\r\n}"
headers:
cache-control:
@@ -5897,7 +6247,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:31:24 GMT
+ - Mon, 10 Feb 2025 08:19:53 GMT
expires:
- '-1'
pragma:
@@ -5908,12 +6258,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14993
+ - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: BAAAC4F835534BEC834A7162037CE45F Ref B: TYO201100113025 Ref C: 2024-08-26T09:31:24Z'
+ - 'Ref A: F4068E7FA47C4A79B67AE120E7C2F295 Ref B: SEL221051503023 Ref C: 2025-02-10T08:19:53Z'
status:
code: 200
message: ''
@@ -5931,13 +6283,13 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/fe1f18a7-85ec-4d65-9ae7-3363c6099afd?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-07-01&t=638602614218483118&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=RzRt6XenFaHS6ZrBbCe8XeBh5y1CnByD0Fj1weRPw9xyB0II2RAo-nmeHlODS0YYgCYUMhnpWEDLFMcOrx01pi6Ae2cQiO3WS1n7PxJxmmviiZpQ-QB6rkEcqLMveQBZPn6pZhvz-HI8yY_K6ucudviTTKec-qQhwhnGMt432PNZKndliRsX2axUMF5sGbVonfJAwH64G2c_EmGQtjVkHHE7HrviN7ehF2N9-AaD6_Z-MhLirwV8fPY9UTgTqJiGTOxgP1pT-2XsF0AO8SCHDtAMsU87skQLRZsKh4ekNooBfXssFdMQbgLnTYhwyfGO7fmJJabmGJAQENokPN5_tw&h=WKTr5ysrPJ6mEBSdjlzre-uexRrse2ohDXd1qcnnK9A
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/85ec88b6-9cd5-4020-977b-3026fcfb533b?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-07-01&t=638747723331572596&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=q-krtIw20yhgvi2SLjekL242Qpr1b8yNKZTFhs-EWb8CL41uiYiQWdb5q1rl5YduSgHBvJu3Z2sXsWJXa6i8HnQbw44cHsQQLhsP5QHQ2006NYuM88-jdcis0y7uVVa6sX7Lp1ZJTEYb51N7TmmgV3v4dbzV9VMOLzKabx8iPjqGgxvoyvfkmrCMQG2Pv3NfEXSFcnLEhj1Vvzq4E1_lNocrNRUOX29DZjUYErf4BqsXngHmDvF6uOQZcfsIJ2SKCP2BGESqLLYkq7bufildsIvLIjC74FxgtEUGN8XGpk_op4bzd3lAUZT3MzDu6IA0ZgM1cyimb_bYi8-PZE4vgw&h=68B2ySK3cF0Towscv29_NKeUfHA2G8J8CR4utz9ZC2I
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:30:21.5095247+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"fe1f18a7-85ec-4d65-9ae7-3363c6099afd\"\
+ string: "{\r\n \"startTime\": \"2025-02-10T08:18:52.7655453+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"85ec88b6-9cd5-4020-977b-3026fcfb533b\"\
\r\n}"
headers:
cache-control:
@@ -5947,7 +6299,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:31:55 GMT
+ - Mon, 10 Feb 2025 08:20:24 GMT
expires:
- '-1'
pragma:
@@ -5958,12 +6310,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14996
+ - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 777AB85C2BAB475AA197736BEBA922CD Ref B: TYO201100113025 Ref C: 2024-08-26T09:31:55Z'
+ - 'Ref A: 07F2FF9BFBE043C690EEC753C6E10869 Ref B: SEL221051503023 Ref C: 2025-02-10T08:20:24Z'
status:
code: 200
message: ''
@@ -5981,14 +6335,14 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/fe1f18a7-85ec-4d65-9ae7-3363c6099afd?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-07-01&t=638602614218483118&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=RzRt6XenFaHS6ZrBbCe8XeBh5y1CnByD0Fj1weRPw9xyB0II2RAo-nmeHlODS0YYgCYUMhnpWEDLFMcOrx01pi6Ae2cQiO3WS1n7PxJxmmviiZpQ-QB6rkEcqLMveQBZPn6pZhvz-HI8yY_K6ucudviTTKec-qQhwhnGMt432PNZKndliRsX2axUMF5sGbVonfJAwH64G2c_EmGQtjVkHHE7HrviN7ehF2N9-AaD6_Z-MhLirwV8fPY9UTgTqJiGTOxgP1pT-2XsF0AO8SCHDtAMsU87skQLRZsKh4ekNooBfXssFdMQbgLnTYhwyfGO7fmJJabmGJAQENokPN5_tw&h=WKTr5ysrPJ6mEBSdjlzre-uexRrse2ohDXd1qcnnK9A
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/85ec88b6-9cd5-4020-977b-3026fcfb533b?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2024-07-01&t=638747723331572596&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=q-krtIw20yhgvi2SLjekL242Qpr1b8yNKZTFhs-EWb8CL41uiYiQWdb5q1rl5YduSgHBvJu3Z2sXsWJXa6i8HnQbw44cHsQQLhsP5QHQ2006NYuM88-jdcis0y7uVVa6sX7Lp1ZJTEYb51N7TmmgV3v4dbzV9VMOLzKabx8iPjqGgxvoyvfkmrCMQG2Pv3NfEXSFcnLEhj1Vvzq4E1_lNocrNRUOX29DZjUYErf4BqsXngHmDvF6uOQZcfsIJ2SKCP2BGESqLLYkq7bufildsIvLIjC74FxgtEUGN8XGpk_op4bzd3lAUZT3MzDu6IA0ZgM1cyimb_bYi8-PZE4vgw&h=68B2ySK3cF0Towscv29_NKeUfHA2G8J8CR4utz9ZC2I
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:30:21.5095247+00:00\",\r\n \"\
- endTime\": \"2024-08-26T09:32:22.4491569+00:00\",\r\n \"status\": \"Succeeded\"\
- ,\r\n \"name\": \"fe1f18a7-85ec-4d65-9ae7-3363c6099afd\"\r\n}"
+ string: "{\r\n \"startTime\": \"2025-02-10T08:18:52.7655453+00:00\",\r\n \"\
+ endTime\": \"2025-02-10T08:20:53.4548809+00:00\",\r\n \"status\": \"Succeeded\"\
+ ,\r\n \"name\": \"85ec88b6-9cd5-4020-977b-3026fcfb533b\"\r\n}"
headers:
cache-control:
- no-cache
@@ -5997,7 +6351,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:32:25 GMT
+ - Mon, 10 Feb 2025 08:20:54 GMT
expires:
- '-1'
pragma:
@@ -6008,12 +6362,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14983
+ - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14999
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: FCE340951D6F4D3B9086872FF73B2A0A Ref B: TYO201100113025 Ref C: 2024-08-26T09:32:25Z'
+ - 'Ref A: AD88278FE903497A8BB875EE139CAEA5 Ref B: SEL221051503023 Ref C: 2025-02-10T08:20:54Z'
status:
code: 200
message: ''
@@ -6031,7 +6387,7 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-07-01
response:
@@ -6040,15 +6396,15 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"da436c59-5801-4d0a-85e0-28c27573534a\"\
- ,\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_PDGMCIUHNRG42HB2X6O5236UXHSRRL7MY7NRNGHANMMEGQE4V5RENGT/providers/Microsoft.Compute/proximityPlacementGroups/ppg1\"\
+ : \"Succeeded\",\r\n \"vmId\": \"54a2ea1f-4afb-45f3-893c-6922a02adb77\"\
+ ,\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_A7ZNFRD6MS7GNL36J32MUS4AOJHYH6IIXMFDQWWJ4KWVB332PDYIWLA/providers/Microsoft.Compute/proximityPlacementGroups/ppg1\"\
\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n\
\ \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\
\n \"sku\": \"10\",\r\n \"version\": \"latest\",\r\n \
\ \"exactVersion\": \"0.20240430.1733\"\r\n },\r\n \"osDisk\": {\r\
- \n \"osType\": \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_b122ee5d7eac4d42927ef3cf57489d73\"\
+ \n \"osType\": \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_45c8ed2bafe644d1b162b5e8a5fdc7dc\"\
,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\
- ,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_b122ee5d7eac4d42927ef3cf57489d73\"\
+ ,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_45c8ed2bafe644d1b162b5e8a5fdc7dc\"\
\r\n },\r\n \"deleteOption\": \"Detach\"\r\n },\r\n \
\ \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\"\
: \"vm1\",\r\n \"adminUsername\": \"debian\",\r\n \"linuxConfiguration\"\
@@ -6063,7 +6419,7 @@ interactions:
\ \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\"\
: true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\"\
:\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- }]},\r\n \"timeCreated\": \"2024-08-26T09:28:20.7730392+00:00\"\r\n },\r\
+ }]},\r\n \"timeCreated\": \"2025-02-10T08:16:56.0448718+00:00\"\r\n },\r\
\n \"etag\": \"\\\"5\\\"\"\r\n}"
headers:
cache-control:
@@ -6073,7 +6429,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:32:25 GMT
+ - Mon, 10 Feb 2025 08:20:54 GMT
etag:
- '"5"'
expires:
@@ -6086,12 +6442,14 @@ interactions:
- 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;34
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;35
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 70751500884747BE857ABFF93846370B Ref B: TYO201100113025 Ref C: 2024-08-26T09:32:25Z'
+ - 'Ref A: 35FAE7B4A9D14F52A4080EB0AD7D9CCD Ref B: SEL221051503023 Ref C: 2025-02-10T08:20:54Z'
status:
code: 200
message: ''
@@ -6109,21 +6467,21 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001","name":"cli_test_ppg_update_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_update","date":"2024-08-26T09:25:16Z","module":"vm","Creator":"aaaaaaaaaaaaaaaaaa@foo.com","DateCreated":"2024-08-26T09:25:21Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001","name":"cli_test_ppg_update_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_update","date":"2025-02-10T08:13:34Z","module":"vm","Creator":"zhuyan@microsoft.com","DateCreated":"2025-02-10T08:13:39Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
content-length:
- - '445'
+ - '439'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:32:25 GMT
+ - Mon, 10 Feb 2025 08:20:54 GMT
expires:
- '-1'
pragma:
@@ -6135,9 +6493,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3748'
x-msedge-ref:
- - 'Ref A: 71089AA699A041F6AE9E3DE2A7BF6A3C Ref B: TYO201100113049 Ref C: 2024-08-26T09:32:26Z'
+ - 'Ref A: 7CCAA06F99E548D38CD6B921541F88B0 Ref B: SEL221051805011 Ref C: 2025-02-10T08:20:55Z'
status:
code: 200
message: OK
@@ -6164,15 +6522,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/av_set_deploy_DUMwSEo2TPyfwOEfwbF7ZEoLfGnGn8Eu","name":"av_set_deploy_DUMwSEo2TPyfwOEfwbF7ZEoLfGnGn8Eu","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7226216321831821118","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-26T09:32:30.3440596Z","duration":"PT0.0001605S","correlationId":"17c43208-f1fb-4fbb-a9a3-6065f5b1814f","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]}]}],"dependencies":[]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/av_set_deploy_u4danvhikWduYN6cEcvYgWBPB3JYyhWV","name":"av_set_deploy_u4danvhikWduYN6cEcvYgWBPB3JYyhWV","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7226216321831821118","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-02-10T08:21:00.2037164Z","duration":"PT0.0007049S","correlationId":"8068be64-f8fe-4c62-a173-dca7340587e8","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]}]}],"dependencies":[]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/av_set_deploy_DUMwSEo2TPyfwOEfwbF7ZEoLfGnGn8Eu/operationStatuses/08584769421359244953?api-version=2022-09-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/av_set_deploy_u4danvhikWduYN6cEcvYgWBPB3JYyhWV/operationStatuses/08584624312282086482?api-version=2022-09-01&t=638747724619125539&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=Ki9sJGCzugrPtt3kbSWveSfmu6aIGzeP9ncxKdTM68SKHDiw-oXzRlJyWbkRqFPExWhwYZOS6utrX3lyYOFpxo8PXXX3JBDWFzgHTMI2p_5XnLFbgxYY6uGZDNLEFubAhnSUBw_G63IEtAugaIr1df8XRbAePHZME9B03JgcDLXGpOBy-dZ6c_7X-ck5TJ0OOFteynlVtWBilv0ptZn_N_JcF1FhFjjvLmhj399tSQdgL8es6UKuAFg1rY2qEQycu_HEc-1l45UJh38J-EtJXdf1wS9GXoxJ2qVLTm4yQPZyXtTsx8lO05oVsrqlS01pyEkQR7xPFJhlb4EAWmqu6A&h=d4tsIXj0zaFw5LwKCLizAGPBj93yQUlj3wi3uNtNboU
cache-control:
- no-cache
content-length:
@@ -6180,7 +6538,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:32:30 GMT
+ - Mon, 10 Feb 2025 08:21:01 GMT
expires:
- '-1'
pragma:
@@ -6192,13 +6550,13 @@ interactions:
x-content-type-options:
- nosniff
x-ms-deployment-engine-version:
- - 1.95.0
+ - 1.224.0
x-ms-ratelimit-remaining-subscription-global-writes:
- '2999'
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: 7B716E0E9289483C8DC69C14167D61F4 Ref B: TYO201151005052 Ref C: 2024-08-26T09:32:27Z'
+ - 'Ref A: E0E36605707441E0996F528F3B805CF3 Ref B: SEL221051803051 Ref C: 2025-02-10T08:20:55Z'
status:
code: 201
message: Created
@@ -6216,21 +6574,21 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769421359244953?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584624312282086482?api-version=2022-09-01&t=638747724619125539&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=Ki9sJGCzugrPtt3kbSWveSfmu6aIGzeP9ncxKdTM68SKHDiw-oXzRlJyWbkRqFPExWhwYZOS6utrX3lyYOFpxo8PXXX3JBDWFzgHTMI2p_5XnLFbgxYY6uGZDNLEFubAhnSUBw_G63IEtAugaIr1df8XRbAePHZME9B03JgcDLXGpOBy-dZ6c_7X-ck5TJ0OOFteynlVtWBilv0ptZn_N_JcF1FhFjjvLmhj399tSQdgL8es6UKuAFg1rY2qEQycu_HEc-1l45UJh38J-EtJXdf1wS9GXoxJ2qVLTm4yQPZyXtTsx8lO05oVsrqlS01pyEkQR7xPFJhlb4EAWmqu6A&h=d4tsIXj0zaFw5LwKCLizAGPBj93yQUlj3wi3uNtNboU
response:
body:
- string: '{"status":"Running"}'
+ string: '{"status":"Accepted"}'
headers:
cache-control:
- no-cache
content-length:
- - '20'
+ - '21'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:32:31 GMT
+ - Mon, 10 Feb 2025 08:21:02 GMT
expires:
- '-1'
pragma:
@@ -6244,7 +6602,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 7DCA721B87764F3CB5C79620CA0A9CB7 Ref B: TYO201151005052 Ref C: 2024-08-26T09:32:31Z'
+ - 'Ref A: 32FC39D952914AEE9244E02FC9B326C2 Ref B: SEL221051803051 Ref C: 2025-02-10T08:21:01Z'
status:
code: 200
message: OK
@@ -6262,9 +6620,9 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769421359244953?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584624312282086482?api-version=2022-09-01&t=638747724619125539&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=Ki9sJGCzugrPtt3kbSWveSfmu6aIGzeP9ncxKdTM68SKHDiw-oXzRlJyWbkRqFPExWhwYZOS6utrX3lyYOFpxo8PXXX3JBDWFzgHTMI2p_5XnLFbgxYY6uGZDNLEFubAhnSUBw_G63IEtAugaIr1df8XRbAePHZME9B03JgcDLXGpOBy-dZ6c_7X-ck5TJ0OOFteynlVtWBilv0ptZn_N_JcF1FhFjjvLmhj399tSQdgL8es6UKuAFg1rY2qEQycu_HEc-1l45UJh38J-EtJXdf1wS9GXoxJ2qVLTm4yQPZyXtTsx8lO05oVsrqlS01pyEkQR7xPFJhlb4EAWmqu6A&h=d4tsIXj0zaFw5LwKCLizAGPBj93yQUlj3wi3uNtNboU
response:
body:
string: '{"status":"Succeeded"}'
@@ -6276,7 +6634,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:33:01 GMT
+ - Mon, 10 Feb 2025 08:21:33 GMT
expires:
- '-1'
pragma:
@@ -6290,7 +6648,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: E489F2F5C3A34B7B88958E566166ACB1 Ref B: TYO201151005052 Ref C: 2024-08-26T09:33:01Z'
+ - 'Ref A: E1555DFEDB8F4325A5B42A75E5AE79BF Ref B: SEL221051803051 Ref C: 2025-02-10T08:21:32Z'
status:
code: 200
message: OK
@@ -6308,12 +6666,12 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/av_set_deploy_DUMwSEo2TPyfwOEfwbF7ZEoLfGnGn8Eu","name":"av_set_deploy_DUMwSEo2TPyfwOEfwbF7ZEoLfGnGn8Eu","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7226216321831821118","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-26T09:32:33.9115073Z","duration":"PT3.5676082S","correlationId":"17c43208-f1fb-4fbb-a9a3-6065f5b1814f","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]}]}],"dependencies":[],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/availabilitySets/avset1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Resources/deployments/av_set_deploy_u4danvhikWduYN6cEcvYgWBPB3JYyhWV","name":"av_set_deploy_u4danvhikWduYN6cEcvYgWBPB3JYyhWV","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7226216321831821118","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-02-10T08:21:04.6561838Z","duration":"PT4.4531723S","correlationId":"8068be64-f8fe-4c62-a173-dca7340587e8","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]}]}],"dependencies":[],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/availabilitySets/avset1"}]}}'
headers:
cache-control:
- no-cache
@@ -6322,7 +6680,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:33:02 GMT
+ - Mon, 10 Feb 2025 08:21:33 GMT
expires:
- '-1'
pragma:
@@ -6336,7 +6694,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: FC42F70727AC4C75B28181462F215CDA Ref B: TYO201151005052 Ref C: 2024-08-26T09:33:02Z'
+ - 'Ref A: 8DF6DDE99777418A980474E9E1251D9D Ref B: SEL221051803051 Ref C: 2025-02-10T08:21:33Z'
status:
code: 200
message: OK
@@ -6354,7 +6712,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/availabilitySets/avset1?api-version=2024-07-01
response:
@@ -6372,7 +6730,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:33:03 GMT
+ - Mon, 10 Feb 2025 08:21:34 GMT
expires:
- '-1'
pragma:
@@ -6383,12 +6741,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGetSubscriptionMaximum;23991
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3748'
x-msedge-ref:
- - 'Ref A: 9FE204C58147401D80FFACEA6650DA09 Ref B: TYO201151002011 Ref C: 2024-08-26T09:33:03Z'
+ - 'Ref A: F56620C6E54D4A46A6F9CD4897106A66 Ref B: SEL221051503045 Ref C: 2025-02-10T08:21:34Z'
status:
code: 200
message: ''
@@ -6406,7 +6766,7 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute?api-version=2022-09-01
response:
@@ -6419,8 +6779,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualMachines","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -6429,8 +6789,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -6439,20 +6799,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"virtualMachines/extensions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
@@ -6462,8 +6822,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualMachineScaleSets","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -6472,8 +6832,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -6482,20 +6842,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"virtualMachineScaleSets/extensions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
@@ -6505,8 +6865,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2015-06-15","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2015-06-15","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6514,8 +6874,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/extensions","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/extensions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6523,8 +6883,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6532,8 +6892,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6541,8 +6901,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6550,8 +6910,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/operations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6559,8 +6919,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/vmSizes","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/vmSizes","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6568,8 +6928,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/runCommands","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/runCommands","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6577,8 +6937,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachines","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachines","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6586,8 +6946,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachineScaleSets","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachineScaleSets","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6595,8 +6955,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/publishers","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/publishers","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6604,8 +6964,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"operations","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"operations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6613,8 +6973,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"None"},{"resourceType":"virtualMachines/runCommands","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"None"},{"resourceType":"virtualMachines/runCommands","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6622,8 +6982,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2022-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2023-09-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualMachineScaleSets/applications","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -6632,8 +6992,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"virtualMachines/VMApplications","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"virtualMachines/VMApplications","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6641,9 +7001,9 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2022-03-01","capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"locations/edgeZones","locations":[],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/vmimages","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2023-09-01","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"locations/edgeZones","locations":[],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/vmimages","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6651,8 +7011,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/publishers","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/publishers","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6660,8 +7020,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"restorePointCollections","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"restorePointCollections","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -6669,8 +7029,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"defaultApiVersion":"2022-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"defaultApiVersion":"2023-09-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"restorePointCollections/restorePoints","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -6679,8 +7039,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"capabilities":"None"},{"resourceType":"proximityPlacementGroups","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"capabilities":"None"},{"resourceType":"proximityPlacementGroups","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6688,8 +7048,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":[]},{"location":"East
@@ -6698,14 +7058,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"sshPublicKeys","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -6714,8 +7075,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2022-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2023-09-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"capacityReservationGroups","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -6724,8 +7085,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -6734,15 +7095,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"capacityReservationGroups/capacityReservations","locations":["East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"capacityReservationGroups/capacityReservations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6750,8 +7111,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -6760,15 +7121,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"virtualMachines/metricDefinitions","locations":["East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"virtualMachines/metricDefinitions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6776,8 +7137,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Israel
- Central","Poland Central","Italy North","Mexico Central","Spain Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2014-04-01"],"capabilities":"None"},{"resourceType":"locations/spotEvictionRates","locations":["East
+ Central","Poland Central","Italy North","Mexico Central","Spain Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2014-04-01"],"capabilities":"None"},{"resourceType":"locations/spotEvictionRates","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6785,8 +7146,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"locations/spotPriceHistory","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"locations/spotPriceHistory","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6794,8 +7155,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"locations/recommendations","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"locations/recommendations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6803,8 +7164,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"locations/sharedGalleries","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"locations/sharedGalleries","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6812,8 +7173,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/communityGalleries","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/communityGalleries","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6821,8 +7182,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"sharedVMImages","locations":["West
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"sharedVMImages","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
@@ -6850,8 +7211,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01","2017-10-15-preview"],"capabilities":"None"},{"resourceType":"galleries","locations":["West
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01","2017-10-15-preview"],"capabilities":"None"},{"resourceType":"galleries","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
@@ -6859,8 +7220,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2023-07-03","capabilities":"SystemAssignedResourceIdentity,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2023-07-03","capabilities":"SystemAssignedResourceIdentity,
SupportsTags, SupportsLocation"},{"resourceType":"galleries/images","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -6869,8 +7230,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"galleries/images/versions","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -6879,8 +7240,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/galleries","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -6889,8 +7250,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"None"},{"resourceType":"payloadGroups","locations":["South
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"None"},{"resourceType":"payloadGroups","locations":["South
Central US","West Europe"],"apiVersions":["2024-03-03","2023-07-03"],"capabilities":"None"},{"resourceType":"galleries/applications","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -6899,8 +7260,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"galleries/applications/versions","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -6909,8 +7270,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"disks","locations":["Southeast Asia","East
US 2","Central US","West Europe","East US","North Central US","South Central
US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -6919,8 +7280,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -6929,20 +7290,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"snapshots","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -6951,14 +7312,14 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/diskoperations","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -6967,8 +7328,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"diskEncryptionSets","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"diskEncryptionSets","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -6976,8 +7337,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01"],"defaultApiVersion":"2022-03-02","capabilities":"SystemAssignedResourceIdentity,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01"],"defaultApiVersion":"2022-03-02","capabilities":"SystemAssignedResourceIdentity,
SupportsTags, SupportsLocation"},{"resourceType":"diskAccesses","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -6986,14 +7347,14 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01"],"defaultApiVersion":"2022-03-02","locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01"],"defaultApiVersion":"2022-03-02","locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"SupportsTags,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"restorePointCollections/restorePoints/diskRestorePoints","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -7002,8 +7363,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30"],"defaultApiVersion":"2022-03-02","capabilities":"None"},{"resourceType":"virtualMachineScaleSets/disks","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30"],"defaultApiVersion":"2022-03-02","capabilities":"None"},{"resourceType":"virtualMachineScaleSets/disks","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -7011,8 +7372,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"cloudServices","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"cloudServices","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -7020,8 +7381,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -7030,14 +7391,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"cloudServices/roles","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -7046,8 +7408,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/roleInstances","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/roleInstances","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -7055,8 +7417,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/csoperations","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/csoperations","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -7064,8 +7426,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/cloudServiceOsVersions","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/cloudServiceOsVersions","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -7073,8 +7435,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/cloudServiceOsFamilies","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/cloudServiceOsFamilies","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -7082,8 +7444,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/networkInterfaces","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/networkInterfaces","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -7091,8 +7453,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/roleInstances/networkInterfaces","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/roleInstances/networkInterfaces","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -7100,8 +7462,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/publicIPAddresses","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/publicIPAddresses","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -7109,17 +7471,18 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["East
- US","East US 2","West US","Central US","North Central US","South Central US","West
- Europe","Southeast Asia","Japan East","Japan West","Australia East","Australia
- Southeast","Australia Central","Brazil South","South India","Central India","West
- India","Canada Central","Canada East","West US 2","UK West","Korea Central","Korea
- South","France Central","South Africa North","UAE North","Switzerland North","Germany
- West Central","Norway East","Jio India West","West US 3","Sweden Central","Qatar
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["East
+ US","West US","Central US","North Central US","South Central US","Southeast
+ Asia","Japan East","Japan West","Australia East","Australia Southeast","Australia
+ Central","Brazil South","South India","Central India","West India","Canada
+ Central","Canada East","West US 2","UK West","Korea Central","Korea South","France
+ Central","South Africa North","UAE North","Switzerland North","Germany West
+ Central","Norway East","Jio India West","West US 3","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Spain Central","Mexico
- Central","West Central US","North Europe","UK South","East Asia","East US
- 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"images","locations":["Southeast
+ Central","New Zealand North","West Central US","East US 2","West Europe","North
+ Europe","UK South","East Asia","East US 2 EUAP","Central US EUAP","East US
+ STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"images","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -7127,51 +7490,59 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/diagnostics","locations":["West
Central US","Southeast Asia","East US 2","East US","South Central US","West
Europe","North Europe","West US 2","UK South","Australia East","South India","Central
India","West India","Korea Central","Korea South","Jio India West","Japan
- West","Japan East","East Asia","Canada Central","Canada East","South Africa
- North","Central US","West US 3","West US","UK West","France Central","UAE
- North","Australia Central","Australia Southeast","Switzerland North","Germany
- West Central","Norway East","North Central US","Brazil South","Italy North","Israel
- Central","Spain Central","Qatar Central","Poland Central","Mexico Central","Sweden
- Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/diagnosticOperations","locations":["West
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/diagnosticOperations","locations":["West
Central US","Southeast Asia","East US 2","East US","South Central US","West
Europe","North Europe","West US 2","UK South","Australia East","South India","Central
India","West India","Korea Central","Korea South","Jio India West","Japan
- West","Japan East","East Asia","Canada Central","Canada East","South Africa
- North","Central US","West US 3","West US","UK West","France Central","UAE
- North","Australia Central","Australia Southeast","Switzerland North","Germany
- West Central","Norway East","North Central US","Brazil South","Italy North","Israel
- Central","Spain Central","Qatar Central","Poland Central","Mexico Central","Sweden
- Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/placementScores","locations":["West
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/placementScores","locations":["West
Central US","Southeast Asia","East US 2","East US","South Central US","West
Europe","North Europe","West US 2","UK South","Australia East","South India","Central
India","West India","Korea Central","Korea South","Jio India West","Japan
- West","Japan East","East Asia","Canada Central","Canada East","South Africa
- North","Central US","West US 3","West US","UK West","France Central","UAE
- North","Australia Central","Australia Southeast","Switzerland North","Germany
- West Central","Norway East","North Central US","Brazil South","Italy North","Israel
- Central","Spain Central","Qatar Central","Poland Central","Mexico Central","Sweden
- Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/placementRecommendations","locations":["West
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/placementRecommendations","locations":["West
Central US","Southeast Asia","East US 2","East US","South Central US","West
Europe","North Europe","West US 2","UK South","Australia East","South India","Central
India","West India","Korea Central","Korea South","Jio India West","Japan
- West","Japan East","East Asia","Canada Central","Canada East","South Africa
- North","Central US","West US 3","West US","UK West","France Central","UAE
- North","Australia Central","Australia Southeast","Switzerland North","Germany
- West Central","Norway East","North Central US","Brazil South","Italy North","Israel
- Central","Spain Central","Qatar Central","Poland Central","Mexico Central","Sweden
- Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/logAnalytics","locations":["East
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/logAnalytics","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -7179,8 +7550,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01"],"capabilities":"None"},{"resourceType":"hostGroups","locations":["Central
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01"],"capabilities":"None"},{"resourceType":"hostGroups","locations":["Central
US","East US 2","West Europe","Southeast Asia","France Central","North Europe","West
US 2","East US","UK South","Japan East","Japan West","East Asia","North Central
US","South Central US","Canada East","Korea Central","Brazil South","UK West","Canada
@@ -7188,8 +7559,8 @@ interactions:
Southeast","Korea South","West India","South Africa North","UAE North","Australia
Central","Switzerland North","Germany West Central","Norway East","Australia
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -7198,15 +7569,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"hostGroups/hosts","locations":["Central
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"hostGroups/hosts","locations":["Central
US","East US 2","West Europe","Southeast Asia","France Central","North Europe","West
US 2","East US","UK South","Japan East","Japan West","East Asia","North Central
US","South Central US","Canada East","Korea Central","Brazil South","UK West","Canada
@@ -7214,8 +7585,8 @@ interactions:
Southeast","Korea South","West India","South Africa North","UAE North","Australia
Central","Switzerland North","Germany West Central","Norway East","Australia
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -7224,15 +7595,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"sharedVMExtensions","locations":["East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"sharedVMExtensions","locations":["East
US 2 EUAP","Central US EUAP","East US STG","Southeast Asia","East US 2","Central
US","West Europe","East US","North Central US","South Central US","West US","North
Europe","East Asia","Brazil South","West US 2","West Central US","UK West","UK
@@ -7241,7 +7612,7 @@ interactions:
India","France Central","South Africa North","UAE North","Australia Central","Switzerland
North","Germany West Central","Norway East","Jio India West","West US 3","Sweden
Central","Qatar Central","Poland Central","Italy North","Israel Central","Spain
- Central","Mexico Central"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
+ Central","Mexico Central","New Zealand North"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"sharedVMExtensions/versions","locations":["East
US 2 EUAP","Central US EUAP","East US STG","Southeast Asia","East US 2","Central
US","West Europe","East US","North Central US","South Central US","West US","North
@@ -7251,17 +7622,39 @@ interactions:
India","France Central","South Africa North","UAE North","Australia Central","Switzerland
North","Germany West Central","Norway East","Jio India West","West US 3","Sweden
Central","Qatar Central","Poland Central","Italy North","Israel Central","Spain
- Central","Mexico Central"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
+ Central","Mexico Central","New Zealand North"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"galleries/inVMAccessControlProfiles","locations":["East
+ US 2 EUAP","Central US EUAP","East US STG","West Central US","South Central
+ US","East US 2","Southeast Asia","West Europe","West US","East US","Canada
+ Central","North Europe","North Central US","Brazil South","UK West","West
+ India","East Asia","Australia East","Japan East","Korea South","West US 2","Canada
+ East","UK South","Central India","South India","Australia Southeast","Japan
+ West","Korea Central","France Central","Central US","Australia Central","South
+ Africa North","UAE North","Switzerland North","Germany West Central","Norway
+ East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North"],"apiVersions":["2024-03-03"],"defaultApiVersion":"2024-03-03","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"galleries/inVMAccessControlProfiles/versions","locations":["East
+ US 2 EUAP","Central US EUAP","East US STG","West Central US","South Central
+ US","East US 2","Southeast Asia","West Europe","West US","East US","Canada
+ Central","North Europe","North Central US","Brazil South","UK West","West
+ India","East Asia","Australia East","Japan East","Korea South","West US 2","Canada
+ East","UK South","Central India","South India","Australia Southeast","Japan
+ West","Korea Central","France Central","Central US","Australia Central","South
+ Africa North","UAE North","Switzerland North","Germany West Central","Norway
+ East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North"],"apiVersions":["2024-03-03"],"defaultApiVersion":"2024-03-03","capabilities":"SupportsTags,
SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '101068'
+ - '105469'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:33:04 GMT
+ - Mon, 10 Feb 2025 08:21:35 GMT
expires:
- '-1'
pragma:
@@ -7275,7 +7668,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 3D63A9229A7649F2B05E1D6989625E40 Ref B: TYO201100114045 Ref C: 2024-08-26T09:33:04Z'
+ - 'Ref A: 9D0DEA2D9FAD466AA021201034C18D52 Ref B: SEL221051504049 Ref C: 2025-02-10T08:21:35Z'
status:
code: 200
message: OK
@@ -7293,28 +7686,28 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/proximityPlacementGroups/ppg1?api-version=2024-07-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/proximityPlacementGroups/ppg1?api-version=2024-11-01
response:
body:
string: "{\r\n \"name\": \"ppg1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/proximityPlacementGroups/ppg1\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\",\r\n \"virtualMachines\": [\r\n {\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_PDGMCIUHNRG42HB2X6O5236UXHSRRL7MY7NRNGHANMMEGQE4V5RENGT/providers/Microsoft.Compute/virtualMachines/VM1\"\
+ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_A7ZNFRD6MS7GNL36J32MUS4AOJHYH6IIXMFDQWWJ4KWVB332PDYIWLA/providers/Microsoft.Compute/virtualMachines/VM1\"\
\r\n }\r\n ],\r\n \"virtualMachineScaleSets\": [\r\n {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_PDGMCIUHNRG42HB2X6O5236UXHSRRL7MY7NRNGHANMMEGQE4V5RENGT/providers/Microsoft.Compute/virtualMachineScaleSets/VMSS1\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_A7ZNFRD6MS7GNL36J32MUS4AOJHYH6IIXMFDQWWJ4KWVB332PDYIWLA/providers/Microsoft.Compute/virtualMachineScaleSets/VMSS1\"\
\r\n }\r\n ],\r\n \"availabilitySets\": []\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '922'
+ - '907'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:33:05 GMT
+ - Mon, 10 Feb 2025 08:21:36 GMT
expires:
- '-1'
pragma:
@@ -7325,12 +7718,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/HighCostGetSubscriptionMaximum;899
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: E2876204791D40768233A849AD8AAE7F Ref B: TYO201100115017 Ref C: 2024-08-26T09:33:05Z'
+ - 'Ref A: DAB0848B0A0A439BB23606700C3E4BFD Ref B: SEL221051801025 Ref C: 2025-02-10T08:21:36Z'
status:
code: 200
message: ''
@@ -7348,7 +7743,7 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/availabilitySets/avset1?api-version=2024-07-01
response:
@@ -7366,7 +7761,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:33:06 GMT
+ - Mon, 10 Feb 2025 08:21:37 GMT
expires:
- '-1'
pragma:
@@ -7377,12 +7772,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGetSubscriptionMaximum;23998
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23996
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 45E097296CFC47ADBECDEB7CA66A8379 Ref B: TYO201151006025 Ref C: 2024-08-26T09:33:06Z'
+ - 'Ref A: AEC50C1DA31C4AC8BAB7CD953B9793AB Ref B: SEL221051803025 Ref C: 2025-02-10T08:21:36Z'
status:
code: 200
message: ''
@@ -7406,7 +7803,7 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/availabilitySets/avset1?api-version=2024-07-01
response:
@@ -7415,7 +7812,7 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\"\
: \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"platformUpdateDomainCount\"\
: 5,\r\n \"platformFaultDomainCount\": 2,\r\n \"proximityPlacementGroup\"\
- : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_PDGMCIUHNRG42HB2X6O5236UXHSRRL7MY7NRNGHANMMEGQE4V5RENGT/providers/Microsoft.Compute/proximityPlacementGroups/ppg1\"\
+ : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_A7ZNFRD6MS7GNL36J32MUS4AOJHYH6IIXMFDQWWJ4KWVB332PDYIWLA/providers/Microsoft.Compute/proximityPlacementGroups/ppg1\"\
\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n}"
headers:
cache-control:
@@ -7425,7 +7822,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:33:06 GMT
+ - Mon, 10 Feb 2025 08:21:37 GMT
expires:
- '-1'
pragma:
@@ -7436,14 +7833,16 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/PutVMSubscriptionMaximum;1497
+ - Microsoft.Compute/PutVMSubscriptionMaximum;1499
x-ms-ratelimit-remaining-subscription-global-writes:
- '2999'
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: 85004A7D436948B59E5E9E368CD3FAC6 Ref B: TYO201100114037 Ref C: 2024-08-26T09:33:07Z'
+ - 'Ref A: DB6CF49BECF64BA1A9EC2941370828B5 Ref B: SEL221051803029 Ref C: 2025-02-10T08:21:37Z'
status:
code: 200
message: ''
@@ -7461,30 +7860,30 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/proximityPlacementGroups/ppg1?api-version=2022-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/proximityPlacementGroups/ppg1?api-version=2024-07-01
response:
body:
string: "{\r\n \"name\": \"ppg1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_update_000001/providers/Microsoft.Compute/proximityPlacementGroups/ppg1\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\",\r\n \"virtualMachines\": [\r\n {\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_PDGMCIUHNRG42HB2X6O5236UXHSRRL7MY7NRNGHANMMEGQE4V5RENGT/providers/Microsoft.Compute/virtualMachines/VM1\"\
+ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_A7ZNFRD6MS7GNL36J32MUS4AOJHYH6IIXMFDQWWJ4KWVB332PDYIWLA/providers/Microsoft.Compute/virtualMachines/VM1\"\
\r\n }\r\n ],\r\n \"virtualMachineScaleSets\": [\r\n {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_PDGMCIUHNRG42HB2X6O5236UXHSRRL7MY7NRNGHANMMEGQE4V5RENGT/providers/Microsoft.Compute/virtualMachineScaleSets/VMSS1\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_A7ZNFRD6MS7GNL36J32MUS4AOJHYH6IIXMFDQWWJ4KWVB332PDYIWLA/providers/Microsoft.Compute/virtualMachineScaleSets/VMSS1\"\
\r\n }\r\n ],\r\n \"availabilitySets\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_PDGMCIUHNRG42HB2X6O5236UXHSRRL7MY7NRNGHANMMEGQE4V5RENGT/providers/Microsoft.Compute/availabilitySets/AVSET1\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_UPDATE_A7ZNFRD6MS7GNL36J32MUS4AOJHYH6IIXMFDQWWJ4KWVB332PDYIWLA/providers/Microsoft.Compute/availabilitySets/AVSET1\"\
\r\n }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1158'
+ - '1143'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:33:07 GMT
+ - Mon, 10 Feb 2025 08:21:37 GMT
expires:
- '-1'
pragma:
@@ -7495,12 +7894,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/HighCostGetSubscriptionMaximum;898
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3748'
x-msedge-ref:
- - 'Ref A: 08CDFD924DD7476F9840EAF4CE5208DB Ref B: TYO201100116011 Ref C: 2024-08-26T09:33:07Z'
+ - 'Ref A: 65F0613605DB4C008E9C298D9ABBE78A Ref B: SEL221051804047 Ref C: 2025-02-10T08:21:38Z'
status:
code: 200
message: ''
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_ppg_with_related_resources.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_ppg_with_related_resources.yaml
index 62383b85a47..283447ab292 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_ppg_with_related_resources.yaml
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_ppg_with_related_resources.yaml
@@ -13,12 +13,12 @@ interactions:
ParameterSetName:
- -n -t -g
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001","name":"cli_test_ppg_vm_vmss_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_with_related_resources","date":"2024-08-26T09:33:11Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001","name":"cli_test_ppg_vm_vmss_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_with_related_resources","date":"2025-02-10T08:05:26Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -27,7 +27,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:33:13 GMT
+ - Mon, 10 Feb 2025 08:05:30 GMT
expires:
- '-1'
pragma:
@@ -41,13 +41,12 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: AE7B7B9DAB894A5883BE7C9F4D388A40 Ref B: TYO201100113037 Ref C: 2024-08-26T09:33:13Z'
+ - 'Ref A: EE2A593190174A99A35969C7D48DBDDA Ref B: SEL221051803049 Ref C: 2025-02-10T08:05:30Z'
status:
code: 200
message: OK
- request:
- body: '{"location": "westus", "tags": {}, "properties": {"proximityPlacementGroupType":
- "Standard"}}'
+ body: '{"location": "westus", "properties": {"proximityPlacementGroupType": "Standard"}}'
headers:
Accept:
- application/json
@@ -58,30 +57,30 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '93'
+ - '81'
Content-Type:
- application/json
ParameterSetName:
- -n -t -g
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg?api-version=2024-07-01
response:
body:
string: "{\r\n \"name\": \"myppg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '358'
+ - '343'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:33:15 GMT
+ - Mon, 10 Feb 2025 08:05:32 GMT
expires:
- '-1'
pragma:
@@ -92,6 +91,8 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/PutDeletePPGSubscriptionMaximum;119
x-ms-ratelimit-remaining-subscription-global-writes:
@@ -99,7 +100,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: 51FE6EC40E164CB9812985E5214F5B75 Ref B: TYO201100113039 Ref C: 2024-08-26T09:33:14Z'
+ - 'Ref A: 5D945C1B3AE347129109848167E5E00B Ref B: SEL221051801051 Ref C: 2025-02-10T08:05:30Z'
status:
code: 201
message: ''
@@ -115,24 +116,24 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg --subnet --vnet-name
- --nsg-rule
+ - -g -n --image --admin-username --use-unmanaged-disk --ssh-key-value --ppg
+ --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001","name":"cli_test_ppg_vm_vmss_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_with_related_resources","date":"2024-08-26T09:33:11Z","module":"vm","DateCreated":"2024-08-26T09:33:14Z","Creator":"aaa@foo.com"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001","name":"cli_test_ppg_vm_vmss_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_with_related_resources","date":"2025-02-10T08:05:26Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
content-length:
- - '463'
+ - '387'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:33:15 GMT
+ - Mon, 10 Feb 2025 08:05:33 GMT
expires:
- '-1'
pragma:
@@ -146,7 +147,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 815F2444943F4635A6445F30EF35A0D5 Ref B: TYO201151005009 Ref C: 2024-08-26T09:33:16Z'
+ - 'Ref A: E449D0929B124D8CBD0528CEA75ABD98 Ref B: SEL221051804021 Ref C: 2025-02-10T08:05:33Z'
status:
code: 200
message: OK
@@ -162,10 +163,10 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg --subnet --vnet-name
- --nsg-rule
+ - -g -n --image --admin-username --use-unmanaged-disk --ssh-key-value --ppg
+ --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-07-01
response:
@@ -181,7 +182,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:33:16 GMT
+ - Mon, 10 Feb 2025 08:05:34 GMT
expires:
- '-1'
pragma:
@@ -193,11 +194,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43971
+ - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 5FBB156C74484CE4BE45C46D6A0B3245 Ref B: TYO201151005023 Ref C: 2024-08-26T09:33:16Z'
+ - 'Ref A: 77EA60C81FA04164A0B7F425FE9BD0B9 Ref B: SEL221051803027 Ref C: 2025-02-10T08:05:34Z'
status:
code: 200
message: OK
@@ -213,10 +214,10 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg --subnet --vnet-name
- --nsg-rule
+ - -g -n --image --admin-username --use-unmanaged-disk --ssh-key-value --ppg
+ --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-07-01
response:
@@ -243,7 +244,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:33:17 GMT
+ - Mon, 10 Feb 2025 08:05:34 GMT
expires:
- '-1'
pragma:
@@ -255,11 +256,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73977
+ - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: BF9525B91BE14D2F834677E4FCE2A722 Ref B: TYO201100114017 Ref C: 2024-08-26T09:33:18Z'
+ - 'Ref A: C3CA574633CF47789C7AC798AB24BDAA Ref B: SEL221051503035 Ref C: 2025-02-10T08:05:34Z'
status:
code: 200
message: OK
@@ -275,15 +276,62 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg --subnet --vnet-name
- --nsg-rule
+ - -g -n --image --admin-username --use-unmanaged-disk --ssh-key-value --ppg
+ --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Storage/storageAccounts?api-version=2023-05-01
+ response:
+ body:
+ string: '{"value":[]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '12'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 10 Feb 2025 08:05: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-ratelimit-remaining-subscription-global-reads:
+ - '3749'
+ x-msedge-ref:
+ - 'Ref A: 87F0AB618E934A5580C093B4C64A1184 Ref B: SEL221051801039 Ref C: 2025-02-10T08:05:35Z'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --admin-username --use-unmanaged-disk --ssh-key-value --ppg
+ --subnet --vnet-name --nsg-rule
+ User-Agent:
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"38808189-fa7a-4d8a-807f-eba01edacca6","roleDefinitionId":"7dbad3e2-b105-40d5-8fe4-4a9ff6c17ae6"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"getDnsResourceReference","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/DS","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/TLSA","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/NAPTR","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/dnssecConfigs","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolvers","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
@@ -291,8 +339,9 @@ interactions:
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
@@ -300,8 +349,9 @@ interactions:
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
@@ -309,8 +359,9 @@ interactions:
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
@@ -318,8 +369,9 @@ interactions:
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
@@ -327,32 +379,85 @@ interactions:
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
3","Southeast Asia","Central India","Canada Central","Central US","France
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
3","Southeast Asia","Central India","Canada Central","Central US","France
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
3","Southeast Asia","Central India","Canada Central","Central US","France
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West
+ Central US","East US","UK South","East US 2","West Europe","North Europe","Australia
+ East","South Central US","North Central US","West US 2","West US 3","Southeast
+ Asia","Central India","Canada Central","Central US","France Central","Japan
+ East","Germany West Central","South Africa North","Korea Central","Sweden
+ Central","East Asia","Switzerland North","Brazil South","West US","Norway
+ East","UAE North","Australia Southeast","Canada East","Japan West","Italy
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West
+ Central US","East US","UK South","East US 2","West Europe","North Europe","Australia
+ East","South Central US","North Central US","West US 2","West US 3","Southeast
+ Asia","Central India","Canada Central","Central US","France Central","Japan
+ East","Germany West Central","South Africa North","Korea Central","Sweden
+ Central","East Asia","Switzerland North","Brazil South","West US","Norway
+ East","UAE North","Australia Southeast","Canada East","Japan West","Italy
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West
+ Central US","East US","UK South","East US 2","West Europe","North Europe","Australia
+ East","South Central US","North Central US","West US 2","West US 3","Southeast
+ Asia","Central India","Canada Central","Central US","France Central","Japan
+ East","Germany West Central","South Africa North","Korea Central","Sweden
+ Central","East Asia","Switzerland North","Brazil South","West US","Norway
+ East","UAE North","Australia Southeast","Canada East","Japan West","Italy
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West
+ Central US","East US","UK South","East US 2","West Europe","North Europe","Australia
+ East","South Central US","North Central US","West US 2","West US 3","Southeast
+ Asia","Central India","Canada Central","Central US","France Central","Japan
+ East","Germany West Central","South Africa North","Korea Central","Sweden
+ Central","East Asia","Switzerland North","Brazil South","West US","Norway
+ East","UAE North","Australia Southeast","Canada East","Japan West","Italy
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West
+ Central US","East US","UK South","East US 2","West Europe","North Europe","Australia
+ East","South Central US","North Central US","West US 2","West US 3","Southeast
+ Asia","Central India","Canada Central","Central US","France Central","Japan
+ East","Germany West Central","South Africa North","Korea Central","Sweden
+ Central","East Asia","Switzerland North","Brazil South","West US","Norway
+ East","UAE North","Australia Southeast","Canada East","Japan West","Italy
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central
US","East US","East US 2","North Central US","South Central US","West US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil
South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central
@@ -367,13 +472,13 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"localNetworkGateways","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -383,7 +488,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connections","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -393,7 +498,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationGateways","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -403,7 +508,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -412,20 +517,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"SupportsTags,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -435,7 +540,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"expressRouteServiceProviders","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -445,7 +550,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -454,7 +559,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -463,7 +568,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -472,7 +577,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -481,7 +586,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -490,7 +595,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -499,7 +604,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"bgpServiceCommunities","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -509,7 +614,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -518,7 +623,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"vpnServerConfigurations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -527,8 +632,8 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","France Central","South
Africa North","Switzerland North","Germany West Central","Norway East","West
US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","Central US EUAP","East
- US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","Central
+ US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"virtualHubs","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
@@ -537,8 +642,8 @@ interactions:
South","Korea Central","Korea South","France Central","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"vpnGateways","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
@@ -547,8 +652,8 @@ interactions:
South","Korea Central","Korea South","France Central","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"p2sVpnGateways","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
@@ -557,8 +662,8 @@ interactions:
South","Korea Central","Korea South","France Central","Australia Central","UAE
North","South Africa North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"expressRouteGateways","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -568,7 +673,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -578,7 +683,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -587,7 +692,7 @@ interactions:
Central","UAE North","South Africa North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -597,7 +702,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"azureFirewalls","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Brazil South","Australia
@@ -607,7 +712,7 @@ interactions:
South","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -616,15 +721,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -633,7 +738,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -642,7 +747,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -652,16 +757,16 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West
- US","North Europe","West Europe","East Asia","Southeast Asia","North Central
- US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
- South","Australia East","Australia Southeast","Central India","South India","West
- India","Canada Central","Canada East","West Central US","West US 2","UK West","UK
- South","Korea Central","Korea South","France Central","Australia Central","South
- Africa North","UAE North","Switzerland North","Germany West Central","Norway
- East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG","East US"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West
+ US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
+ Central US","South Central US","Central US","East US 2","Japan East","Japan
+ West","Brazil South","Australia East","Australia Southeast","Central India","South
+ India","West India","Canada Central","Canada East","West Central US","West
+ US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia
+ Central","South Africa North","UAE North","Switzerland North","Germany West
+ Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
+ Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
@@ -670,8 +775,8 @@ interactions:
South","Korea Central","Korea South","France Central","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -680,14 +785,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -697,7 +803,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West
Central US","North Central US","West US","West Europe","UAE Central","Germany
North","East US","West India","East US 2","Australia Central","Australia Central
2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE
@@ -707,9 +813,9 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US STG","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West
Central US","Jio India West","Jio India Central","North Central US","West
US","West Europe","UAE Central","Germany North","East US","West India","East
US 2","Australia Central","Australia Central 2","South Africa West","Brazil
@@ -719,8 +825,8 @@ interactions:
East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea
Central","Southeast Asia","South Central US","Norway West","Australia East","Japan
East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West
Central US","Jio India West","North Central US","West US","West Europe","UAE
Central","Germany North","East US","West India","East US 2","Australia Central","Australia
Central 2","South Africa West","Brazil South","UK West","North Europe","Central
@@ -730,8 +836,8 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US 2 EUAP","Central
- US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West
Central US","North Central US","West US","West Europe","UAE Central","Germany
North","East US","West India","East US 2","Australia Central","Australia Central
2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE
@@ -741,8 +847,8 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US STG","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West
Central US","North Central US","West US","West Europe","UAE Central","Germany
North","East US","West India","East US 2","Australia Central","Australia Central
2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE
@@ -752,8 +858,8 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US STG","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West
Central US","North Central US","West US","West Europe","UAE Central","Germany
North","East US","West India","East US 2","Australia Central","Australia Central
2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE
@@ -763,8 +869,8 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US STG","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West
Central US","North Central US","West US","West Europe","UAE Central","Germany
North","East US","West India","East US 2","Australia Central","Australia Central
2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE
@@ -774,8 +880,8 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US STG","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West
Central US","North Central US","West US","West Europe","UAE Central","Germany
North","East US","West India","East US 2","Australia Central","Australia Central
2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE
@@ -785,17 +891,32 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US STG","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East
+ US 2","West US 2","East US","West Europe","UK South","North Europe","Central
+ US","Australia East","West US","South Central US","France Central","South
+ Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany
+ West Central","Italy North","Norway East","Poland Central","Switzerland North","UAE
+ North","Brazil South","Israel Central","North Central US","Australia Central","Australia
+ Central 2","Australia Southeast","South India","Canada East","France South","Germany
+ North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico
+ Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand
+ North","Southeast Asia","Japan West","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East
US 2","West US 2","East US","West Europe","UK South","North Europe","Central
US","Australia East","West US","South Central US","France Central","South
- Africa North","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East
+ Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany
+ West Central","Italy North","Norway East","Poland Central","Switzerland North","UAE
+ North","Brazil South","Israel Central","North Central US","Australia Central","Australia
+ Central 2","Australia Southeast","South India","Canada East","France South","Germany
+ North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico
+ Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand
+ North","Southeast Asia","Japan West","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East
US 2","West US 2","East US","West Europe","UK South","North Europe","Central
- US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags,
+ US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East
US 2","West US 2","East US","West Europe","UK South","North Europe","Central
- US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West
+ US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West
Central US","Jio India West","North Central US","West US","West Europe","UAE
Central","Germany North","East US","West India","East US 2","Australia Central","Australia
Central 2","South Africa West","Brazil South","UK West","North Europe","Central
@@ -805,8 +926,8 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US 2 EUAP","Central
- US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -814,7 +935,7 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West
+ US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -822,7 +943,7 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
- Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy
North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE
Central","Germany North","Central India","Korea South","Switzerland North","Switzerland
West","Japan West","France South","South Africa West","West India","Canada
@@ -832,8 +953,8 @@ interactions:
West","West US","East US","North Europe","West Europe","West Central US","South
Central US","Australia East","Australia Central","Australia Southeast","UK
South","East US 2","West US 2","North Central US","Canada Central","France
- Central","Central US","Israel Central","Spain Central","Mexico Central","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags,
+ Central","Central US","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar
Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany
North","Central India","Korea South","Switzerland North","Switzerland West","Japan
@@ -844,8 +965,9 @@ interactions:
US","North Europe","West Europe","South Central US","Australia East","Australia
Central","Australia Southeast","UK South","East US 2","West US 2","North Central
US","Canada Central","France Central","West Central US","Central US","Israel
- Central","Spain Central","Mexico Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy
+ Central","Spain Central","Mexico Central","New Zealand North","Central US
+ EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy
North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE
Central","Germany North","Central India","Korea South","Switzerland North","Switzerland
West","Japan West","France South","South Africa West","West India","Canada
@@ -855,8 +977,8 @@ interactions:
West","West US","East US","North Europe","West Europe","West Central US","South
Central US","Australia East","Australia Central","Australia Southeast","UK
South","East US 2","West US 2","North Central US","Canada Central","France
- Central","Central US","Israel Central","Spain Central","Mexico Central","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags,
+ Central","Central US","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy
North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Jio
India West","Sweden Central","UAE North","Australia Central 2","UAE Central","Germany
@@ -867,11 +989,11 @@ interactions:
US","East US","North Europe","West Europe","West Central US","South Central
US","Australia East","Australia Central","Australia Southeast","UK South","East
US 2","West US 2","North Central US","Canada Central","France Central","Central
- US","Israel Central","Spain Central","Mexico Central","Central US EUAP","East
- US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity,
- SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove,
+ US","Israel Central","Spain Central","Mexico Central","New Zealand North","Central
+ US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity,
+ SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -881,13 +1003,13 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -897,7 +1019,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -906,7 +1028,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -915,14 +1037,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -932,7 +1055,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -941,20 +1064,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -964,7 +1087,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -973,7 +1096,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -982,20 +1105,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1005,13 +1128,13 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dscpConfigurations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1021,7 +1144,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1031,13 +1154,13 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints/privateLinkServiceProxies","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1047,7 +1170,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1055,8 +1178,8 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"loadBalancers","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
@@ -1065,14 +1188,14 @@ interactions:
South","Korea Central","Korea South","France Central","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkSecurityGroups","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1082,7 +1205,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationSecurityGroups","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1092,7 +1215,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"serviceEndpointPolicies","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1102,7 +1225,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkIntentPolicies","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1112,7 +1235,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"routeTables","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1122,7 +1245,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPPrefixes","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1132,7 +1255,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -1141,20 +1264,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1164,7 +1287,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1174,7 +1297,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1184,7 +1307,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/pingMeshes","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1194,8 +1317,8 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1204,7 +1327,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1213,7 +1336,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1222,7 +1345,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1231,7 +1354,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1240,7 +1363,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1249,7 +1372,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1258,7 +1381,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1267,7 +1390,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1276,7 +1399,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1285,7 +1408,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1294,7 +1417,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1303,7 +1426,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1312,7 +1435,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1321,7 +1444,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1330,7 +1453,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1339,7 +1462,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1348,7 +1471,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1357,7 +1480,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1366,7 +1489,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1375,7 +1498,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1384,7 +1507,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1393,7 +1516,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1402,7 +1525,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1411,7 +1534,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1420,7 +1543,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"privateLinkServices","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1430,13 +1553,13 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"SupportsTags,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/privateLinkServices","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1446,7 +1569,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1455,7 +1578,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"networkProfiles","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
@@ -1464,8 +1587,8 @@ interactions:
South","Korea Central","Korea South","France Central","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1475,7 +1598,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1484,7 +1607,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -1494,7 +1617,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1503,7 +1626,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1512,7 +1635,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1521,7 +1644,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1530,7 +1653,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1539,7 +1662,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -1548,7 +1671,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central
US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North
Central US","South Central US","West US","North Europe","West Europe","East
Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia
@@ -1572,7 +1695,7 @@ interactions:
Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia
East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"expressRouteCrossConnections","locations":["East
- US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"networkSecurityPerimeters","locations":["East
US 2 EUAP","Central US EUAP","West Central US","Jio India West","Jio India
Central","East US STG","North Central US","West US","West Europe","UAE Central","Germany
@@ -1584,19 +1707,19 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/lenses","locations":["Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '195259'
+ - '205291'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:33:20 GMT
+ - Mon, 10 Feb 2025 08:05:37 GMT
expires:
- '-1'
pragma:
@@ -1610,7 +1733,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 350B727ABC0E46378735483F8AA6CEC6 Ref B: TYO201100115033 Ref C: 2024-08-26T09:33:18Z'
+ - 'Ref A: 4D501A6811DF4861B10D79F6E8B4B39A Ref B: SEL221051503049 Ref C: 2025-02-10T08:05:36Z'
status:
code: 200
message: OK
@@ -1626,12 +1749,12 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg --subnet --vnet-name
- --nsg-rule
+ - -g -n --image --admin-username --use-unmanaged-disk --ssh-key-value --ppg
+ --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-05-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/virtualNetworks/vnet1''
@@ -1645,7 +1768,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:33:22 GMT
+ - Mon, 10 Feb 2025 08:05:38 GMT
expires:
- '-1'
pragma:
@@ -1659,7 +1782,7 @@ interactions:
x-ms-failure-cause:
- gateway
x-msedge-ref:
- - 'Ref A: 35ADFFCC7628427DAA25A8663B85AEBC Ref B: TYO201100114023 Ref C: 2024-08-26T09:33:22Z'
+ - 'Ref A: E0065B10A08D462399D71B030A968357 Ref B: SEL221051504035 Ref C: 2025-02-10T08:05:38Z'
status:
code: 404
message: Not Found
@@ -1675,10 +1798,10 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg --subnet --vnet-name
- --nsg-rule
+ - -g -n --image --admin-username --use-unmanaged-disk --ssh-key-value --ppg
+ --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute?api-version=2022-09-01
response:
@@ -1691,8 +1814,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualMachines","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -1701,8 +1824,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -1711,20 +1834,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"virtualMachines/extensions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
@@ -1734,8 +1857,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualMachineScaleSets","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -1744,8 +1867,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -1754,20 +1877,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"virtualMachineScaleSets/extensions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
@@ -1777,8 +1900,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2015-06-15","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2015-06-15","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1786,8 +1909,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/extensions","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/extensions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1795,8 +1918,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1804,8 +1927,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1813,8 +1936,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1822,8 +1945,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/operations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1831,8 +1954,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/vmSizes","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/vmSizes","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1840,8 +1963,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/runCommands","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/runCommands","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1849,8 +1972,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachines","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachines","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1858,8 +1981,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachineScaleSets","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachineScaleSets","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1867,8 +1990,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/publishers","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/publishers","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1876,8 +1999,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"operations","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"operations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1885,8 +2008,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"None"},{"resourceType":"virtualMachines/runCommands","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"None"},{"resourceType":"virtualMachines/runCommands","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1894,8 +2017,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2022-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2023-09-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualMachineScaleSets/applications","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -1904,8 +2027,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"virtualMachines/VMApplications","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"virtualMachines/VMApplications","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1913,9 +2036,9 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2022-03-01","capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"locations/edgeZones","locations":[],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/vmimages","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2023-09-01","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"locations/edgeZones","locations":[],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/vmimages","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1923,8 +2046,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/publishers","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/publishers","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1932,8 +2055,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"restorePointCollections","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"restorePointCollections","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -1941,8 +2064,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"defaultApiVersion":"2022-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"defaultApiVersion":"2023-09-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"restorePointCollections/restorePoints","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -1951,8 +2074,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"capabilities":"None"},{"resourceType":"proximityPlacementGroups","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"capabilities":"None"},{"resourceType":"proximityPlacementGroups","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -1960,8 +2083,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":[]},{"location":"East
@@ -1970,14 +2093,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"sshPublicKeys","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -1986,8 +2110,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2022-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2023-09-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"capacityReservationGroups","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -1996,8 +2120,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -2006,15 +2130,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"capacityReservationGroups/capacityReservations","locations":["East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"capacityReservationGroups/capacityReservations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -2022,8 +2146,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -2032,15 +2156,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"virtualMachines/metricDefinitions","locations":["East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"virtualMachines/metricDefinitions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -2048,8 +2172,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Israel
- Central","Poland Central","Italy North","Mexico Central","Spain Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2014-04-01"],"capabilities":"None"},{"resourceType":"locations/spotEvictionRates","locations":["East
+ Central","Poland Central","Italy North","Mexico Central","Spain Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2014-04-01"],"capabilities":"None"},{"resourceType":"locations/spotEvictionRates","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -2057,8 +2181,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"locations/spotPriceHistory","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"locations/spotPriceHistory","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -2066,8 +2190,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"locations/recommendations","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"locations/recommendations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -2075,8 +2199,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"locations/sharedGalleries","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"locations/sharedGalleries","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -2084,8 +2208,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/communityGalleries","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/communityGalleries","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -2093,8 +2217,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"sharedVMImages","locations":["West
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"sharedVMImages","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
@@ -2122,8 +2246,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01","2017-10-15-preview"],"capabilities":"None"},{"resourceType":"galleries","locations":["West
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01","2017-10-15-preview"],"capabilities":"None"},{"resourceType":"galleries","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
@@ -2131,8 +2255,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2023-07-03","capabilities":"SystemAssignedResourceIdentity,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2023-07-03","capabilities":"SystemAssignedResourceIdentity,
SupportsTags, SupportsLocation"},{"resourceType":"galleries/images","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -2141,8 +2265,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"galleries/images/versions","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -2151,8 +2275,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/galleries","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -2161,8 +2285,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"None"},{"resourceType":"payloadGroups","locations":["South
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"None"},{"resourceType":"payloadGroups","locations":["South
Central US","West Europe"],"apiVersions":["2024-03-03","2023-07-03"],"capabilities":"None"},{"resourceType":"galleries/applications","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -2171,8 +2295,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"galleries/applications/versions","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -2181,8 +2305,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"disks","locations":["Southeast Asia","East
US 2","Central US","West Europe","East US","North Central US","South Central
US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -2191,8 +2315,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -2201,20 +2325,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"snapshots","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -2223,14 +2347,14 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/diskoperations","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -2239,8 +2363,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"diskEncryptionSets","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"diskEncryptionSets","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -2248,8 +2372,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01"],"defaultApiVersion":"2022-03-02","capabilities":"SystemAssignedResourceIdentity,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01"],"defaultApiVersion":"2022-03-02","capabilities":"SystemAssignedResourceIdentity,
SupportsTags, SupportsLocation"},{"resourceType":"diskAccesses","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -2258,14 +2382,14 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01"],"defaultApiVersion":"2022-03-02","locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01"],"defaultApiVersion":"2022-03-02","locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"SupportsTags,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"restorePointCollections/restorePoints/diskRestorePoints","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -2274,8 +2398,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30"],"defaultApiVersion":"2022-03-02","capabilities":"None"},{"resourceType":"virtualMachineScaleSets/disks","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30"],"defaultApiVersion":"2022-03-02","capabilities":"None"},{"resourceType":"virtualMachineScaleSets/disks","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -2283,8 +2407,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"cloudServices","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"cloudServices","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -2292,8 +2416,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -2302,14 +2426,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"cloudServices/roles","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -2318,8 +2443,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/roleInstances","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/roleInstances","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -2327,8 +2452,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/csoperations","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/csoperations","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -2336,8 +2461,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/cloudServiceOsVersions","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/cloudServiceOsVersions","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -2345,8 +2470,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/cloudServiceOsFamilies","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/cloudServiceOsFamilies","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -2354,8 +2479,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/networkInterfaces","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/networkInterfaces","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -2363,8 +2488,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/roleInstances/networkInterfaces","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/roleInstances/networkInterfaces","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -2372,8 +2497,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/publicIPAddresses","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/publicIPAddresses","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -2381,17 +2506,18 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["East
- US","East US 2","West US","Central US","North Central US","South Central US","West
- Europe","Southeast Asia","Japan East","Japan West","Australia East","Australia
- Southeast","Australia Central","Brazil South","South India","Central India","West
- India","Canada Central","Canada East","West US 2","UK West","Korea Central","Korea
- South","France Central","South Africa North","UAE North","Switzerland North","Germany
- West Central","Norway East","Jio India West","West US 3","Sweden Central","Qatar
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["East
+ US","West US","Central US","North Central US","South Central US","Southeast
+ Asia","Japan East","Japan West","Australia East","Australia Southeast","Australia
+ Central","Brazil South","South India","Central India","West India","Canada
+ Central","Canada East","West US 2","UK West","Korea Central","Korea South","France
+ Central","South Africa North","UAE North","Switzerland North","Germany West
+ Central","Norway East","Jio India West","West US 3","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Spain Central","Mexico
- Central","West Central US","North Europe","UK South","East Asia","East US
- 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"images","locations":["Southeast
+ Central","New Zealand North","West Central US","East US 2","West Europe","North
+ Europe","UK South","East Asia","East US 2 EUAP","Central US EUAP","East US
+ STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"images","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -2399,51 +2525,59 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/diagnostics","locations":["West
Central US","Southeast Asia","East US 2","East US","South Central US","West
Europe","North Europe","West US 2","UK South","Australia East","South India","Central
India","West India","Korea Central","Korea South","Jio India West","Japan
- West","Japan East","East Asia","Canada Central","Canada East","South Africa
- North","Central US","West US 3","West US","UK West","France Central","UAE
- North","Australia Central","Australia Southeast","Switzerland North","Germany
- West Central","Norway East","North Central US","Brazil South","Italy North","Israel
- Central","Spain Central","Qatar Central","Poland Central","Mexico Central","Sweden
- Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/diagnosticOperations","locations":["West
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/diagnosticOperations","locations":["West
Central US","Southeast Asia","East US 2","East US","South Central US","West
Europe","North Europe","West US 2","UK South","Australia East","South India","Central
India","West India","Korea Central","Korea South","Jio India West","Japan
- West","Japan East","East Asia","Canada Central","Canada East","South Africa
- North","Central US","West US 3","West US","UK West","France Central","UAE
- North","Australia Central","Australia Southeast","Switzerland North","Germany
- West Central","Norway East","North Central US","Brazil South","Italy North","Israel
- Central","Spain Central","Qatar Central","Poland Central","Mexico Central","Sweden
- Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/placementScores","locations":["West
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/placementScores","locations":["West
Central US","Southeast Asia","East US 2","East US","South Central US","West
Europe","North Europe","West US 2","UK South","Australia East","South India","Central
India","West India","Korea Central","Korea South","Jio India West","Japan
- West","Japan East","East Asia","Canada Central","Canada East","South Africa
- North","Central US","West US 3","West US","UK West","France Central","UAE
- North","Australia Central","Australia Southeast","Switzerland North","Germany
- West Central","Norway East","North Central US","Brazil South","Italy North","Israel
- Central","Spain Central","Qatar Central","Poland Central","Mexico Central","Sweden
- Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/placementRecommendations","locations":["West
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/placementRecommendations","locations":["West
Central US","Southeast Asia","East US 2","East US","South Central US","West
Europe","North Europe","West US 2","UK South","Australia East","South India","Central
India","West India","Korea Central","Korea South","Jio India West","Japan
- West","Japan East","East Asia","Canada Central","Canada East","South Africa
- North","Central US","West US 3","West US","UK West","France Central","UAE
- North","Australia Central","Australia Southeast","Switzerland North","Germany
- West Central","Norway East","North Central US","Brazil South","Italy North","Israel
- Central","Spain Central","Qatar Central","Poland Central","Mexico Central","Sweden
- Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/logAnalytics","locations":["East
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/logAnalytics","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -2451,8 +2585,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01"],"capabilities":"None"},{"resourceType":"hostGroups","locations":["Central
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01"],"capabilities":"None"},{"resourceType":"hostGroups","locations":["Central
US","East US 2","West Europe","Southeast Asia","France Central","North Europe","West
US 2","East US","UK South","Japan East","Japan West","East Asia","North Central
US","South Central US","Canada East","Korea Central","Brazil South","UK West","Canada
@@ -2460,8 +2594,8 @@ interactions:
Southeast","Korea South","West India","South Africa North","UAE North","Australia
Central","Switzerland North","Germany West Central","Norway East","Australia
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -2470,15 +2604,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"hostGroups/hosts","locations":["Central
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"hostGroups/hosts","locations":["Central
US","East US 2","West Europe","Southeast Asia","France Central","North Europe","West
US 2","East US","UK South","Japan East","Japan West","East Asia","North Central
US","South Central US","Canada East","Korea Central","Brazil South","UK West","Canada
@@ -2486,8 +2620,8 @@ interactions:
Southeast","Korea South","West India","South Africa North","UAE North","Australia
Central","Switzerland North","Germany West Central","Norway East","Australia
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -2496,15 +2630,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"sharedVMExtensions","locations":["East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"sharedVMExtensions","locations":["East
US 2 EUAP","Central US EUAP","East US STG","Southeast Asia","East US 2","Central
US","West Europe","East US","North Central US","South Central US","West US","North
Europe","East Asia","Brazil South","West US 2","West Central US","UK West","UK
@@ -2513,7 +2647,7 @@ interactions:
India","France Central","South Africa North","UAE North","Australia Central","Switzerland
North","Germany West Central","Norway East","Jio India West","West US 3","Sweden
Central","Qatar Central","Poland Central","Italy North","Israel Central","Spain
- Central","Mexico Central"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
+ Central","Mexico Central","New Zealand North"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"sharedVMExtensions/versions","locations":["East
US 2 EUAP","Central US EUAP","East US STG","Southeast Asia","East US 2","Central
US","West Europe","East US","North Central US","South Central US","West US","North
@@ -2523,17 +2657,39 @@ interactions:
India","France Central","South Africa North","UAE North","Australia Central","Switzerland
North","Germany West Central","Norway East","Jio India West","West US 3","Sweden
Central","Qatar Central","Poland Central","Italy North","Israel Central","Spain
- Central","Mexico Central"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
+ Central","Mexico Central","New Zealand North"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"galleries/inVMAccessControlProfiles","locations":["East
+ US 2 EUAP","Central US EUAP","East US STG","West Central US","South Central
+ US","East US 2","Southeast Asia","West Europe","West US","East US","Canada
+ Central","North Europe","North Central US","Brazil South","UK West","West
+ India","East Asia","Australia East","Japan East","Korea South","West US 2","Canada
+ East","UK South","Central India","South India","Australia Southeast","Japan
+ West","Korea Central","France Central","Central US","Australia Central","South
+ Africa North","UAE North","Switzerland North","Germany West Central","Norway
+ East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North"],"apiVersions":["2024-03-03"],"defaultApiVersion":"2024-03-03","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"galleries/inVMAccessControlProfiles/versions","locations":["East
+ US 2 EUAP","Central US EUAP","East US STG","West Central US","South Central
+ US","East US 2","Southeast Asia","West Europe","West US","East US","Canada
+ Central","North Europe","North Central US","Brazil South","UK West","West
+ India","East Asia","Australia East","Japan East","Korea South","West US 2","Canada
+ East","UK South","Central India","South India","Australia Southeast","Japan
+ West","Korea Central","France Central","Central US","Australia Central","South
+ Africa North","UAE North","Switzerland North","Germany West Central","Norway
+ East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North"],"apiVersions":["2024-03-03"],"defaultApiVersion":"2024-03-03","capabilities":"SupportsTags,
SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '101068'
+ - '105469'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:33:22 GMT
+ - Mon, 10 Feb 2025 08:05:39 GMT
expires:
- '-1'
pragma:
@@ -2547,7 +2703,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 72F548DFB16D40EC949004F83E5174AC Ref B: TYO201151006060 Ref C: 2024-08-26T09:33:23Z'
+ - 'Ref A: 1D682ABDA1FA4316BCD0E56F9A8E467D Ref B: SEL221051801045 Ref C: 2025-02-10T08:05:38Z'
status:
code: 200
message: OK
@@ -2563,28 +2719,28 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg --subnet --vnet-name
- --nsg-rule
+ - -g -n --image --admin-username --use-unmanaged-disk --ssh-key-value --ppg
+ --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg?api-version=2024-07-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg?api-version=2024-11-01
response:
body:
string: "{\r\n \"name\": \"myppg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\",\r\n \"virtualMachines\": [],\r\n \"virtualMachineScaleSets\"\
: [],\r\n \"availabilitySets\": []\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '451'
+ - '436'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:33:23 GMT
+ - Mon, 10 Feb 2025 08:05:39 GMT
expires:
- '-1'
pragma:
@@ -2595,12 +2751,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/HighCostGetSubscriptionMaximum;897
+ - Microsoft.Compute/HighCostGetSubscriptionMaximum;899
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 7C461DCB9813471085DB69616F43B3EF Ref B: TYO201100114035 Ref C: 2024-08-26T09:33:24Z'
+ - 'Ref A: 1F9F4E8445A54C9F8B27A62678C172B6 Ref B: SEL221051803009 Ref C: 2025-02-10T08:05:39Z'
status:
code: 200
message: ''
@@ -2616,10 +2774,10 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg --subnet --vnet-name
- --nsg-rule
+ - -g -n --image --admin-username --use-unmanaged-disk --ssh-key-value --ppg
+ --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-07-01
response:
@@ -2635,7 +2793,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:33:25 GMT
+ - Mon, 10 Feb 2025 08:05:40 GMT
expires:
- '-1'
pragma:
@@ -2647,11 +2805,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43970
+ - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43998
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 096319A8D34F46179ABD0FD687D6C6A1 Ref B: TYO201100115011 Ref C: 2024-08-26T09:33:25Z'
+ - 'Ref A: 513900C8FF834E5B9C06C255FB83365D Ref B: SEL221051804049 Ref C: 2025-02-10T08:05:40Z'
status:
code: 200
message: OK
@@ -2667,10 +2825,10 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg --subnet --vnet-name
- --nsg-rule
+ - -g -n --image --admin-username --use-unmanaged-disk --ssh-key-value --ppg
+ --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-07-01
response:
@@ -2697,7 +2855,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:33:25 GMT
+ - Mon, 10 Feb 2025 08:05:40 GMT
expires:
- '-1'
pragma:
@@ -2709,11 +2867,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73976
+ - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: F1112D92B4BE4894A4213EF77E3CBA8A Ref B: TYO201151003025 Ref C: 2024-08-26T09:33:25Z'
+ - 'Ref A: 1893BCAF2B2C49D488CB5C5254B012EA Ref B: SEL221051503029 Ref C: 2025-02-10T08:05:41Z'
status:
code: 200
message: OK
@@ -2729,10 +2887,10 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg --subnet --vnet-name
- --nsg-rule
+ - -g -n --image --admin-username --use-unmanaged-disk --ssh-key-value --ppg
+ --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-07-01
response:
@@ -2748,7 +2906,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:33:26 GMT
+ - Mon, 10 Feb 2025 08:05:41 GMT
expires:
- '-1'
pragma:
@@ -2760,11 +2918,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43969
+ - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43997
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3748'
x-msedge-ref:
- - 'Ref A: A6DA2523B936445DB6BDCCE43FF84D45 Ref B: TYO201100115021 Ref C: 2024-08-26T09:33:26Z'
+ - 'Ref A: B086D9D0F55741A2BFDA4990FA6562C5 Ref B: SEL221051804037 Ref C: 2025-02-10T08:05:41Z'
status:
code: 200
message: OK
@@ -2780,10 +2938,10 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg --subnet --vnet-name
- --nsg-rule
+ - -g -n --image --admin-username --use-unmanaged-disk --ssh-key-value --ppg
+ --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-07-01
response:
@@ -2810,7 +2968,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:33:27 GMT
+ - Mon, 10 Feb 2025 08:05:42 GMT
expires:
- '-1'
pragma:
@@ -2822,11 +2980,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73975
+ - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73997
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3748'
x-msedge-ref:
- - 'Ref A: 6507924A331B4F4BA4AED857600BE017 Ref B: TYO201100114017 Ref C: 2024-08-26T09:33:27Z'
+ - 'Ref A: BA65F89AC0224EAC87ED116E8B4CBAE4 Ref B: SEL221051503029 Ref C: 2025-02-10T08:05:42Z'
status:
code: 200
message: OK
@@ -2842,15 +3000,15 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg --subnet --vnet-name
- --nsg-rule
+ - -g -n --image --admin-username --use-unmanaged-disk --ssh-key-value --ppg
+ --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"38808189-fa7a-4d8a-807f-eba01edacca6","roleDefinitionId":"7dbad3e2-b105-40d5-8fe4-4a9ff6c17ae6"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"40c49ff3-c6ae-436d-b28e-b8e268841980","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"d66e9e8e-53a4-420c-866d-5bb39aaea675","roleDefinitionId":"d4d2d679-cce0-429d-9a3b-17118c035f66"},{"applicationId":"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c","roleDefinitionId":"13ba9ab4-19f0-4804-adc4-14ece36cc7a1"},{"applicationId":"7c33bfcb-8d33-48d6-8e60-dc6404003489","roleDefinitionId":"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3"},{"applicationId":"1e3e4475-288f-4018-a376-df66fd7fac5f","roleDefinitionId":"1d538b69-3d87-4e56-8ff8-25786fd48261"},{"applicationId":"a0be0c72-870e-46f0-9c49-c98333a996f7","roleDefinitionId":"7ce22727-ffce-45a9-930c-ddb2e56fa131"},{"applicationId":"486c78bf-a0f7-45f1-92fd-37215929e116","roleDefinitionId":"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d"},{"applicationId":"19947cfd-0303-466c-ac3c-fcc19a7a1570","roleDefinitionId":"d813ab6c-bfb7-413e-9462-005b21f0ce09"},{"applicationId":"341b7f3d-69b3-47f9-9ce7-5b7f4945fdbd","roleDefinitionId":"8141843c-c51c-4c1e-a5bf-0d351594b86c"},{"applicationId":"328fd23b-de6e-462c-9433-e207470a5727","roleDefinitionId":"79e29e06-4056-41e5-a6b2-959f1f47747e"},{"applicationId":"6d057c82-a784-47ae-8d12-ca7b38cf06b4","roleDefinitionId":"c27dd31e-c1e5-4ab0-93e1-a12ba34f182e","managedByRoleDefinitionId":"82e8942a-bcb6-444a-b1c4-31a3ea463a7d"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"},{"applicationId":"6e02f8e9-db9b-4eb5-aa5a-7c8968375f68","roleDefinitionId":"787424c7-f9d2-416b-a939-4d59deb2d259"},{"applicationId":"60b2e7d5-a27f-426d-a6b1-acced0846fdf","roleDefinitionId":"0edb7c43-ed90-4da9-9ca2-e9a5d1521b00"}],"resourceTypes":[{"resourceType":"dnszones","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"getDnsResourceReference","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/DS","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/TLSA","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/NAPTR","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2023-07-01-preview","2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/dnssecConfigs","locations":["global"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolvers","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
@@ -2858,8 +3016,9 @@ interactions:
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/inboundEndpoints","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
@@ -2867,8 +3026,9 @@ interactions:
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolvers/outboundEndpoints","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
@@ -2876,8 +3036,9 @@ interactions:
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
@@ -2885,8 +3046,9 @@ interactions:
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsForwardingRulesets/forwardingRules","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
@@ -2894,32 +3056,85 @@ interactions:
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsForwardingRulesets/virtualNetworkLinks","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
3","Southeast Asia","Central India","Canada Central","Central US","France
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsResolvers","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
3","Southeast Asia","Central India","Canada Central","Central US","France
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listDnsForwardingRulesets","locations":["West
Central US","East US 2","West Europe","North Europe","Australia East","UK
South","South Central US","East US","North Central US","West US 2","West US
3","Southeast Asia","Central India","Canada Central","Central US","France
Central","Japan East","Germany West Central","South Africa North","Korea Central","Sweden
Central","East Asia","Switzerland North","Brazil South","West US","Norway
East","UAE North","Australia Southeast","Canada East","Japan West","Italy
- North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Qatar
- Central","Poland Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview","2023-07-01","2022-07-01","2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"dnsResolverPolicies","locations":["West
+ Central US","East US","UK South","East US 2","West Europe","North Europe","Australia
+ East","South Central US","North Central US","West US 2","West US 3","Southeast
+ Asia","Central India","Canada Central","Central US","France Central","Japan
+ East","Germany West Central","South Africa North","Korea Central","Sweden
+ Central","East Asia","Switzerland North","Brazil South","West US","Norway
+ East","UAE North","Australia Southeast","Canada East","Japan West","Italy
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/dnsSecurityRules","locations":["West
+ Central US","East US","UK South","East US 2","West Europe","North Europe","Australia
+ East","South Central US","North Central US","West US 2","West US 3","Southeast
+ Asia","Central India","Canada Central","Central US","France Central","Japan
+ East","Germany West Central","South Africa North","Korea Central","Sweden
+ Central","East Asia","Switzerland North","Brazil South","West US","Norway
+ East","UAE North","Australia Southeast","Canada East","Japan West","Italy
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsResolverPolicies/virtualNetworkLinks","locations":["West
+ Central US","East US","UK South","East US 2","West Europe","North Europe","Australia
+ East","South Central US","North Central US","West US 2","West US 3","Southeast
+ Asia","Central India","Canada Central","Central US","France Central","Japan
+ East","Germany West Central","South Africa North","Korea Central","Sweden
+ Central","East Asia","Switzerland North","Brazil South","West US","Norway
+ East","UAE North","Australia Southeast","Canada East","Japan West","Italy
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listDnsResolverPolicies","locations":["West
+ Central US","East US","UK South","East US 2","West Europe","North Europe","Australia
+ East","South Central US","North Central US","West US 2","West US 3","Southeast
+ Asia","Central India","Canada Central","Central US","France Central","Japan
+ East","Germany West Central","South Africa North","Korea Central","Sweden
+ Central","East Asia","Switzerland North","Brazil South","West US","Norway
+ East","UAE North","Australia Southeast","Canada East","Japan West","Italy
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"dnsResolverDomainLists","locations":["West
+ Central US","East US","UK South","East US 2","West Europe","North Europe","Australia
+ East","South Central US","North Central US","West US 2","West US 3","Southeast
+ Asia","Central India","Canada Central","Central US","France Central","Japan
+ East","Germany West Central","South Africa North","Korea Central","Sweden
+ Central","East Asia","Switzerland North","Brazil South","West US","Norway
+ East","UAE North","Australia Southeast","Canada East","Japan West","Italy
+ North","Israel Central","Uk West","South India","Spain Central","Mexico Central","Germany
+ North","Australia Central","UAE Central","New Zealand North","Qatar Central","Poland
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/dnsResolverPolicyOperationResults","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverPolicyOperationStatuses","locations":[],"apiVersions":["2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central
US","East US","East US 2","North Central US","South Central US","West US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil
South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central
@@ -2934,13 +3149,13 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"localNetworkGateways","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -2950,7 +3165,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connections","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -2960,7 +3175,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationGateways","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -2970,7 +3185,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -2979,20 +3194,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"SupportsTags,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"expressRouteCircuits","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3002,7 +3217,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"expressRouteServiceProviders","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3012,7 +3227,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3021,7 +3236,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3030,7 +3245,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3039,7 +3254,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3048,7 +3263,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3057,7 +3272,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3066,7 +3281,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"bgpServiceCommunities","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3076,7 +3291,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3085,7 +3300,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"vpnServerConfigurations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3094,8 +3309,8 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","France Central","South
Africa North","Switzerland North","Germany West Central","Norway East","West
US 3","Jio India West","Sweden Central","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","Central US EUAP","East
- US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","Central
+ US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"virtualHubs","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
@@ -3104,8 +3319,8 @@ interactions:
South","Korea Central","Korea South","France Central","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"vpnGateways","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
@@ -3114,8 +3329,8 @@ interactions:
South","Korea Central","Korea South","France Central","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"p2sVpnGateways","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
@@ -3124,8 +3339,8 @@ interactions:
South","Korea Central","Korea South","France Central","Australia Central","UAE
North","South Africa North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"expressRouteGateways","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3135,7 +3350,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3145,7 +3360,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"expressRoutePorts","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3154,7 +3369,7 @@ interactions:
Central","UAE North","South Africa North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"securityPartnerProviders","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3164,7 +3379,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"azureFirewalls","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Brazil South","Australia
@@ -3174,7 +3389,7 @@ interactions:
South","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -3183,15 +3398,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3200,7 +3415,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3209,7 +3424,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/ApplicationGatewayWafDynamicManifests","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3219,16 +3434,16 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West
- US","North Europe","West Europe","East Asia","Southeast Asia","North Central
- US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
- South","Australia East","Australia Southeast","Central India","South India","West
- India","Canada Central","Canada East","West Central US","West US 2","UK West","UK
- South","Korea Central","Korea South","France Central","Australia Central","South
- Africa North","UAE North","Switzerland North","Germany West Central","Norway
- East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG","East US"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West
+ US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
+ Central US","South Central US","Central US","East US 2","Japan East","Japan
+ West","Brazil South","Australia East","Australia Southeast","Central India","South
+ India","West India","Canada Central","Canada East","West Central US","West
+ US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia
+ Central","South Africa North","UAE North","Switzerland North","Germany West
+ Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
+ Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"bastionHosts","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
@@ -3237,8 +3452,8 @@ interactions:
South","Korea Central","Korea South","France Central","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -3247,14 +3462,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3264,7 +3480,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01"],"capabilities":"None"},{"resourceType":"networkManagers","locations":["West
Central US","North Central US","West US","West Europe","UAE Central","Germany
North","East US","West India","East US 2","Australia Central","Australia Central
2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE
@@ -3274,9 +3490,9 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US STG","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagerConnections","locations":[],"apiVersions":["2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"SupportsExtension"},{"resourceType":"locations/perimeterAssociableResourceTypes","locations":["West
Central US","Jio India West","Jio India Central","North Central US","West
US","West Europe","UAE Central","Germany North","East US","West India","East
US 2","Australia Central","Australia Central 2","South Africa West","Brazil
@@ -3286,8 +3502,8 @@ interactions:
East","France Central","West US 3","Central India","Korea South","Brazil Southeast","Korea
Central","Southeast Asia","South Central US","Norway West","Australia East","Japan
East","Canada East","Canada Central","Switzerland North","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"locations/queryNetworkSecurityPerimeter","locations":["West
Central US","Jio India West","North Central US","West US","West Europe","UAE
Central","Germany North","East US","West India","East US 2","Australia Central","Australia
Central 2","South Africa West","Brazil South","UK West","North Europe","Central
@@ -3297,8 +3513,8 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US 2 EUAP","Central
- US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West
Central US","North Central US","West US","West Europe","UAE Central","Germany
North","East US","West India","East US 2","Australia Central","Australia Central
2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE
@@ -3308,8 +3524,8 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US STG","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West
Central US","North Central US","West US","West Europe","UAE Central","Germany
North","East US","West India","East US 2","Australia Central","Australia Central
2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE
@@ -3319,8 +3535,8 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US STG","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"defaultApiVersion":"2022-05-01","capabilities":"None"},{"resourceType":"networkGroupMemberships","locations":["West
Central US","North Central US","West US","West Europe","UAE Central","Germany
North","East US","West India","East US 2","Australia Central","Australia Central
2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE
@@ -3330,8 +3546,8 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US STG","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-06-01-preview"],"defaultApiVersion":"2022-06-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West
Central US","North Central US","West US","West Europe","UAE Central","Germany
North","East US","West India","East US 2","Australia Central","Australia Central
2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE
@@ -3341,8 +3557,8 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US STG","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West
Central US","North Central US","West US","West Europe","UAE Central","Germany
North","East US","West India","East US 2","Australia Central","Australia Central
2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE
@@ -3352,17 +3568,32 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US STG","East
- US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01-preview","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-03-01-preview","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-06-01-preview","2022-05-01","2022-04-01-preview","2022-01-01"],"capabilities":"None"},{"resourceType":"networkManagers/ipamPools","locations":["East
+ US 2","West US 2","East US","West Europe","UK South","North Europe","Central
+ US","Australia East","West US","South Central US","France Central","South
+ Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany
+ West Central","Italy North","Norway East","Poland Central","Switzerland North","UAE
+ North","Brazil South","Israel Central","North Central US","Australia Central","Australia
+ Central 2","Australia Southeast","South India","Canada East","France South","Germany
+ North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico
+ Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand
+ North","Southeast Asia","Japan West","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"locations/ipamPoolOperationResults","locations":["East
US 2","West US 2","East US","West Europe","UK South","North Europe","Central
US","Australia East","West US","South Central US","France Central","South
- Africa North","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-01-01-preview","2023-07-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East
+ Africa North","Sweden Central","Central India","East Asia","Canada Central","Germany
+ West Central","Italy North","Norway East","Poland Central","Switzerland North","UAE
+ North","Brazil South","Israel Central","North Central US","Australia Central","Australia
+ Central 2","Australia Southeast","South India","Canada East","France South","Germany
+ North","Norway West","Switzerland West","UK West","UAE Central","Brazil Southeast","Mexico
+ Central","Spain Central","Japan East","Korea South","Korea Central","New Zealand
+ North","Southeast Asia","Japan West","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"networkManagers/verifierWorkspaces","locations":["East
US 2","West US 2","East US","West Europe","UK South","North Europe","Central
- US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"SupportsTags,
+ US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/verifierWorkspaceOperationResults","locations":["East
US 2","West US 2","East US","West Europe","UK South","North Europe","Central
- US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-01-01-preview"],"defaultApiVersion":"2024-01-01-preview","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West
+ US","Australia East","West US","South Central US","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-01-01-preview"],"defaultApiVersion":"2024-05-01","capabilities":"None"},{"resourceType":"copilot","locations":[],"apiVersions":["2024-06-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/networkSecurityPerimeterOperationStatuses","locations":["West
Central US","Jio India West","North Central US","West US","West Europe","UAE
Central","Germany North","East US","West India","East US 2","Australia Central","Australia
Central 2","South Africa West","Brazil South","UK West","North Europe","Central
@@ -3372,8 +3603,8 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central","East US 2 EUAP","Central
- US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North","East
+ US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview"],"defaultApiVersion":"2023-07-01-preview","capabilities":"None"},{"resourceType":"expressRouteProviderPorts","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3381,7 +3612,7 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West
+ US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"locations/hybridEdgeZone","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3389,7 +3620,7 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
- Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy
+ Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["Italy
North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE
Central","Germany North","Central India","Korea South","Switzerland North","Switzerland
West","Japan West","France South","South Africa West","West India","Canada
@@ -3399,8 +3630,8 @@ interactions:
West","West US","East US","North Europe","West Europe","West Central US","South
Central US","Australia East","Australia Central","Australia Southeast","UK
South","East US 2","West US 2","North Central US","Canada Central","France
- Central","Central US","Israel Central","Spain Central","Mexico Central","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags,
+ Central","Central US","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"ipGroups","locations":["Italy North","Qatar
Central","Poland Central","UAE North","Australia Central 2","UAE Central","Germany
North","Central India","Korea South","Switzerland North","Switzerland West","Japan
@@ -3411,8 +3642,9 @@ interactions:
US","North Europe","West Europe","South Central US","Australia East","Australia
Central","Australia Southeast","UK South","East US 2","West US 2","North Central
US","Canada Central","France Central","West Central US","Central US","Israel
- Central","Spain Central","Mexico Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy
+ Central","Spain Central","Mexico Central","New Zealand North","Central US
+ EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"capabilities":"None"},{"resourceType":"virtualRouters","locations":["Italy
North","Qatar Central","Poland Central","UAE North","Australia Central 2","UAE
Central","Germany North","Central India","Korea South","Switzerland North","Switzerland
West","Japan West","France South","South Africa West","West India","Canada
@@ -3422,8 +3654,8 @@ interactions:
West","West US","East US","North Europe","West Europe","West Central US","South
Central US","Australia East","Australia Central","Australia Southeast","UK
South","East US 2","West US 2","North Central US","Canada Central","France
- Central","Central US","Israel Central","Spain Central","Mexico Central","Central
- US EUAP","East US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags,
+ Central","Central US","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Italy
North","Qatar Central","Poland Central","Brazil Southeast","West US 3","Jio
India West","Sweden Central","UAE North","Australia Central 2","UAE Central","Germany
@@ -3434,11 +3666,11 @@ interactions:
US","East US","North Europe","West Europe","West Central US","South Central
US","Australia East","Australia Central","Australia Southeast","UK South","East
US 2","West US 2","North Central US","Canada Central","France Central","Central
- US","Israel Central","Spain Central","Mexico Central","Central US EUAP","East
- US 2 EUAP"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity,
- SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove,
+ US","Israel Central","Spain Central","Mexico Central","New Zealand North","Central
+ US EUAP","East US 2 EUAP"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SystemAssignedResourceIdentity,
+ SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2023-01-01-preview","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"assist","locations":[],"apiVersions":["2024-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2024-06-01","2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2024-06-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"trafficmanagerprofiles/heatMaps","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/azureendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/externalendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles/nestedendpoints","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailabilityV2","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01"],"defaultApiVersion":"2022-04-01","capabilities":"None"},{"resourceType":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["2022-04-01-preview","2022-04-01","2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"virtualNetworks","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3448,13 +3680,13 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3464,7 +3696,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3473,7 +3705,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -3482,14 +3714,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3499,7 +3732,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -3508,20 +3741,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"internalPublicIpAddresses","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3531,7 +3764,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"customIpPrefixes","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3540,7 +3773,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -3549,20 +3782,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3572,13 +3805,13 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dscpConfigurations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3588,7 +3821,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3598,13 +3831,13 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints/privateLinkServiceProxies","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3614,7 +3847,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3622,8 +3855,8 @@ interactions:
US 2","UK West","UK South","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"loadBalancers","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
@@ -3632,14 +3865,14 @@ interactions:
South","Korea Central","Korea South","France Central","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkSecurityGroups","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3649,7 +3882,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationSecurityGroups","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3659,7 +3892,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"serviceEndpointPolicies","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3669,7 +3902,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkIntentPolicies","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3679,7 +3912,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"routeTables","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3689,7 +3922,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPPrefixes","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3699,7 +3932,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -3708,20 +3941,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3731,7 +3964,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3741,7 +3974,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3751,7 +3984,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/pingMeshes","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3761,8 +3994,8 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
- CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3771,7 +4004,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3780,7 +4013,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3789,7 +4022,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3798,7 +4031,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"cloudServiceSlots","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3807,7 +4040,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3816,7 +4049,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3825,7 +4058,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3834,7 +4067,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3843,7 +4076,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3852,7 +4085,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3861,7 +4094,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3870,7 +4103,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3879,7 +4112,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3888,7 +4121,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3897,7 +4130,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3906,7 +4139,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3915,7 +4148,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/publishResources","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3924,7 +4157,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3933,7 +4166,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3942,7 +4175,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3951,7 +4184,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3960,7 +4193,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3969,7 +4202,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3978,7 +4211,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -3987,7 +4220,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"privateLinkServices","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -3997,13 +4230,13 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"SupportsTags,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/privateLinkServices","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -4013,7 +4246,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4022,7 +4255,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"networkProfiles","locations":["West US","East
US","North Europe","West Europe","East Asia","Southeast Asia","North Central
US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil
@@ -4031,8 +4264,8 @@ interactions:
South","Korea Central","Korea South","France Central","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Mexico Central","Spain Central","Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Mexico Central","Spain Central","New
+ Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/bareMetalTenants","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -4042,7 +4275,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"ipAllocations","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4051,7 +4284,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/serviceTagDetails","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
@@ -4061,7 +4294,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/dataTasks","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4070,7 +4303,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"locations/startPacketTagging","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4079,7 +4312,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/deletePacketTagging","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4088,7 +4321,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4097,7 +4330,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4106,7 +4339,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveNetworkSecurityGroups","locations":["West
US","East US","North Europe","West Europe","East Asia","Southeast Asia","North
Central US","South Central US","Central US","East US 2","Japan East","Japan
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -4115,7 +4348,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01"],"capabilities":"None"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2024-02-01","2022-05-01","2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central
US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North
Central US","South Central US","West US","North Europe","West Europe","East
Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia
@@ -4139,7 +4372,7 @@ interactions:
Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia
East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"expressRouteCrossConnections","locations":["East
- US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"networkSecurityPerimeters","locations":["East
US 2 EUAP","Central US EUAP","West Central US","Jio India West","Jio India
Central","East US STG","North Central US","West US","West Europe","UAE Central","Germany
@@ -4151,19 +4384,19 @@ interactions:
3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast
Asia","South Central US","Norway West","Australia East","Japan East","Canada
East","Canada Central","Switzerland North","Qatar Central","Poland Central","Italy
- North","Israel Central","Mexico Central","Spain Central"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"CrossResourceGroupResourceMove,
+ North","Israel Central","Mexico Central","Spain Central","New Zealand North"],"apiVersions":["2023-09-01-preview","2023-08-01-preview","2023-07-01-preview","2022-02-01-preview","2021-05-01-preview","2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/lenses","locations":["Central
- US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
+ US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '195259'
+ - '205291'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:33:29 GMT
+ - Mon, 10 Feb 2025 08:05:44 GMT
expires:
- '-1'
pragma:
@@ -4177,7 +4410,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 5A0218D204AB44BDB9BD9322B54D9586 Ref B: TYO201100115029 Ref C: 2024-08-26T09:33:28Z'
+ - 'Ref A: 3A88D290406F4BACBE5A55869FB5C57F Ref B: SEL221051504045 Ref C: 2025-02-10T08:05:42Z'
status:
code: 200
message: OK
@@ -4193,12 +4426,12 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg --subnet --vnet-name
- --nsg-rule
+ - -g -n --image --admin-username --use-unmanaged-disk --ssh-key-value --ppg
+ --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2024-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2024-05-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/virtualNetworks/vnet1''
@@ -4212,7 +4445,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:33:30 GMT
+ - Mon, 10 Feb 2025 08:05:44 GMT
expires:
- '-1'
pragma:
@@ -4226,39 +4459,44 @@ interactions:
x-ms-failure-cause:
- gateway
x-msedge-ref:
- - 'Ref A: 4D1C97A9D9A649A68578040D30C54FD3 Ref B: TYO201100115007 Ref C: 2024-08-26T09:33:30Z'
+ - 'Ref A: 213E4FCCE1B74BAF8BC7E9727B5055EC Ref B: SEL221051504017 Ref C: 2025-02-10T08:05:44Z'
status:
code: 404
message: Not Found
- 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": "vnet1", "type": "Microsoft.Network/virtualNetworks", "location":
- "westus", "apiVersion": "2015-06-15", "dependsOn": [], "tags": {}, "properties":
- {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets": [{"name":
- "subnet1", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"type": "Microsoft.Network/networkSecurityGroups",
- "name": "vm1NSG", "apiVersion": "2015-06-15", "location": "westus", "tags":
- {}, "dependsOn": []}, {"apiVersion": "2022-01-01", "type": "Microsoft.Network/publicIPAddresses",
- "name": "vm1PublicIP", "location": "westus", "tags": {}, "dependsOn": [], "properties":
- {"publicIPAllocationMethod": "Static"}, "sku": {"name": "Standard"}}, {"apiVersion":
- "2015-06-15", "type": "Microsoft.Network/networkInterfaces", "name": "vm1VMNic",
- "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/virtualNetworks/vnet1",
- "Microsoft.Network/networkSecurityGroups/vm1NSG", "Microsoft.Network/publicIpAddresses/vm1PublicIP"],
- "properties": {"ipConfigurations": [{"name": "ipconfigvm1", "properties": {"privateIPAllocationMethod":
- "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
+ [{"type": "Microsoft.Storage/storageAccounts", "name": "vhdstoragec24361189f8f74",
+ "apiVersion": "2015-06-15", "location": "westus", "tags": {}, "dependsOn": [],
+ "properties": {"accountType": "Premium_LRS"}}, {"name": "vnet1", "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus", "apiVersion": "2015-06-15", "dependsOn": [], "tags": {},
+ "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets":
+ [{"name": "subnet1", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"type":
+ "Microsoft.Network/networkSecurityGroups", "name": "vm1NSG", "apiVersion": "2015-06-15",
+ "location": "westus", "tags": {}, "dependsOn": []}, {"apiVersion": "2022-01-01",
+ "type": "Microsoft.Network/publicIPAddresses", "name": "vm1PublicIP", "location":
+ "westus", "tags": {}, "dependsOn": [], "properties": {"publicIPAllocationMethod":
+ "Static"}, "sku": {"name": "Standard"}}, {"apiVersion": "2015-06-15", "type":
+ "Microsoft.Network/networkInterfaces", "name": "vm1VMNic", "location": "westus",
+ "tags": {}, "dependsOn": ["Microsoft.Network/virtualNetworks/vnet1", "Microsoft.Network/networkSecurityGroups/vm1NSG",
+ "Microsoft.Network/publicIpAddresses/vm1PublicIP"], "properties": {"ipConfigurations":
+ [{"name": "ipconfigvm1", "properties": {"privateIPAllocationMethod": "Dynamic",
+ "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"}}}],
"networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"}}},
{"apiVersion": "2024-07-01", "type": "Microsoft.Compute/virtualMachines", "name":
- "vm1", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm1VMNic"],
- "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile":
- {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic",
+ "vm1", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Storage/storageAccounts/vhdstoragec24361189f8f74",
+ "Microsoft.Network/networkInterfaces/vm1VMNic"], "properties": {"hardwareProfile":
+ {"vmSize": "Standard_DS1_v2"}, "networkProfile": {"networkInterfaces": [{"id":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic",
"properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption":
- "fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType":
- null}}, "imageReference": {"publisher": "Debian", "offer": "debian-10", "sku":
- "10", "version": "latest"}}, "osProfile": {"computerName": "vm1", "adminUsername":
+ "fromImage", "name": "osdisk_c24361189f", "caching": "ReadWrite", "vhd": {"uri":
+ "https://vhdstoragec24361189f8f74.blob.core.windows.net/vhds/osdisk_c24361189f.vhd"}},
+ "imageReference": {"publisher": "Debian", "offer": "debian-10", "sku": "10",
+ "version": "latest"}}, "osProfile": {"computerName": "vm1", "adminUsername":
"debian", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh":
{"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==
- aaa@foo.com\n", "path": "/home/debian/.ssh/authorized_keys"}]}}}, "proximityPlacementGroup":
+ test@example.com\n", "path": "/home/debian/.ssh/authorized_keys"}]}}}, "proximityPlacementGroup":
{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg"}}}],
"outputs": {}}, "parameters": {}, "mode": "incremental"}}'
headers:
@@ -4271,30 +4509,30 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '3787'
+ - '4128'
Content-Type:
- application/json
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg --subnet --vnet-name
- --nsg-rule
+ - -g -n --image --admin-username --use-unmanaged-disk --ssh-key-value --ppg
+ --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/vm_deploy_jwCGZoVEPanzRQwh321ioNZQwm1s8WJk","name":"vm_deploy_jwCGZoVEPanzRQwh321ioNZQwm1s8WJk","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17200587395662328399","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-26T09:33:35.9563362Z","duration":"PT0.000549S","correlationId":"45b78351-1076-4b66-81c2-690b540f949d","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/vm_deploy_5lk2e52qhH4S9Ub4qSKu4mfmTEqRqK3f","name":"vm_deploy_5lk2e52qhH4S9Ub4qSKu4mfmTEqRqK3f","type":"Microsoft.Resources/deployments","properties":{"templateHash":"9933740111776631344","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-02-10T08:05:50.5758267Z","duration":"PT0.0005618S","correlationId":"0109b454-41c0-4648-83ed-0c781df940fc","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Storage/storageAccounts/vhdstoragec24361189f8f74","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstoragec24361189f8f74"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/vm_deploy_jwCGZoVEPanzRQwh321ioNZQwm1s8WJk/operationStatuses/08584769420716120974?api-version=2022-09-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/vm_deploy_5lk2e52qhH4S9Ub4qSKu4mfmTEqRqK3f/operationStatuses/08584624321387136578?api-version=2022-09-01&t=638747715520429162&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=bcVqQCjwSp5U7wS-W9mkZ0xtBxP-2YDr5ZSCBo4wSaHaHBjgel3tTUQ63R0gExI6gm-04pe9siA38X_R7VWVnz22Tx9poi3SCYtul_T_uLC1Y4TrDR_qKh47HQtRwu4DugyLeVG-0OkcNbbBTcPNYjU1XcpXhpI2aSiuJafCHSbcEkPdkRdUdJIAX6M8sFeNhI6fNiMEMFXj12vXxsUpPpcA5ALIK9hQbYngZ1ZZPHEQdZUuOfu_TgFdWrLTvlSR4fEoCxdghvIcDop3CywrYnXdPIzYOMxCrpg0SBYucQ_6CRuMvxaYHVqul-QXjk1rpceyrzBWGjiCyRS6CzRwyQ&h=YWskvTRMli0uA3LuQXanq8bmZQUITZKuOrLIpvvJuMM
cache-control:
- no-cache
content-length:
- - '2402'
+ - '2778'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:33:36 GMT
+ - Mon, 10 Feb 2025 08:05:51 GMT
expires:
- '-1'
pragma:
@@ -4306,13 +4544,13 @@ interactions:
x-content-type-options:
- nosniff
x-ms-deployment-engine-version:
- - 1.95.0
+ - 1.224.0
x-ms-ratelimit-remaining-subscription-global-writes:
- '2999'
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: 1932BED2DAEA4D5AB6DE9459939E655A Ref B: TYO201100116051 Ref C: 2024-08-26T09:33:31Z'
+ - 'Ref A: 3320EC03B6AB4358AAAC5E712D5D183E Ref B: SEL221051802019 Ref C: 2025-02-10T08:05:45Z'
status:
code: 201
message: Created
@@ -4328,12 +4566,59 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg --subnet --vnet-name
- --nsg-rule
+ - -g -n --image --admin-username --use-unmanaged-disk --ssh-key-value --ppg
+ --subnet --vnet-name --nsg-rule
+ User-Agent:
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584624321387136578?api-version=2022-09-01&t=638747715520429162&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=bcVqQCjwSp5U7wS-W9mkZ0xtBxP-2YDr5ZSCBo4wSaHaHBjgel3tTUQ63R0gExI6gm-04pe9siA38X_R7VWVnz22Tx9poi3SCYtul_T_uLC1Y4TrDR_qKh47HQtRwu4DugyLeVG-0OkcNbbBTcPNYjU1XcpXhpI2aSiuJafCHSbcEkPdkRdUdJIAX6M8sFeNhI6fNiMEMFXj12vXxsUpPpcA5ALIK9hQbYngZ1ZZPHEQdZUuOfu_TgFdWrLTvlSR4fEoCxdghvIcDop3CywrYnXdPIzYOMxCrpg0SBYucQ_6CRuMvxaYHVqul-QXjk1rpceyrzBWGjiCyRS6CzRwyQ&h=YWskvTRMli0uA3LuQXanq8bmZQUITZKuOrLIpvvJuMM
+ response:
+ body:
+ string: '{"status":"Accepted"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '21'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 10 Feb 2025 08:05:51 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-msedge-ref:
+ - 'Ref A: C8A83545A4AB4EF0A47D67A758A30388 Ref B: SEL221051802019 Ref C: 2025-02-10T08:05:52Z'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --admin-username --use-unmanaged-disk --ssh-key-value --ppg
+ --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769420716120974?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584624321387136578?api-version=2022-09-01&t=638747715520429162&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=bcVqQCjwSp5U7wS-W9mkZ0xtBxP-2YDr5ZSCBo4wSaHaHBjgel3tTUQ63R0gExI6gm-04pe9siA38X_R7VWVnz22Tx9poi3SCYtul_T_uLC1Y4TrDR_qKh47HQtRwu4DugyLeVG-0OkcNbbBTcPNYjU1XcpXhpI2aSiuJafCHSbcEkPdkRdUdJIAX6M8sFeNhI6fNiMEMFXj12vXxsUpPpcA5ALIK9hQbYngZ1ZZPHEQdZUuOfu_TgFdWrLTvlSR4fEoCxdghvIcDop3CywrYnXdPIzYOMxCrpg0SBYucQ_6CRuMvxaYHVqul-QXjk1rpceyrzBWGjiCyRS6CzRwyQ&h=YWskvTRMli0uA3LuQXanq8bmZQUITZKuOrLIpvvJuMM
response:
body:
string: '{"status":"Running"}'
@@ -4345,7 +4630,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:33:37 GMT
+ - Mon, 10 Feb 2025 08:06:22 GMT
expires:
- '-1'
pragma:
@@ -4359,7 +4644,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 0936F9C8D5F34DCBA0F08C01E336F2F4 Ref B: TYO201100116051 Ref C: 2024-08-26T09:33:36Z'
+ - 'Ref A: DDDDE608F3404C0DA70C2A861310F344 Ref B: SEL221051802019 Ref C: 2025-02-10T08:06:22Z'
status:
code: 200
message: OK
@@ -4375,12 +4660,12 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg --subnet --vnet-name
- --nsg-rule
+ - -g -n --image --admin-username --use-unmanaged-disk --ssh-key-value --ppg
+ --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769420716120974?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584624321387136578?api-version=2022-09-01&t=638747715520429162&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=bcVqQCjwSp5U7wS-W9mkZ0xtBxP-2YDr5ZSCBo4wSaHaHBjgel3tTUQ63R0gExI6gm-04pe9siA38X_R7VWVnz22Tx9poi3SCYtul_T_uLC1Y4TrDR_qKh47HQtRwu4DugyLeVG-0OkcNbbBTcPNYjU1XcpXhpI2aSiuJafCHSbcEkPdkRdUdJIAX6M8sFeNhI6fNiMEMFXj12vXxsUpPpcA5ALIK9hQbYngZ1ZZPHEQdZUuOfu_TgFdWrLTvlSR4fEoCxdghvIcDop3CywrYnXdPIzYOMxCrpg0SBYucQ_6CRuMvxaYHVqul-QXjk1rpceyrzBWGjiCyRS6CzRwyQ&h=YWskvTRMli0uA3LuQXanq8bmZQUITZKuOrLIpvvJuMM
response:
body:
string: '{"status":"Running"}'
@@ -4392,7 +4677,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:34:07 GMT
+ - Mon, 10 Feb 2025 08:06:52 GMT
expires:
- '-1'
pragma:
@@ -4406,7 +4691,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 96EDE7773E374BF4A581383EFAAAB170 Ref B: TYO201100116051 Ref C: 2024-08-26T09:34:07Z'
+ - 'Ref A: BF0CE25CBF3A489F834D4E58685D99E9 Ref B: SEL221051802019 Ref C: 2025-02-10T08:06:53Z'
status:
code: 200
message: OK
@@ -4422,12 +4707,12 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg --subnet --vnet-name
- --nsg-rule
+ - -g -n --image --admin-username --use-unmanaged-disk --ssh-key-value --ppg
+ --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769420716120974?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584624321387136578?api-version=2022-09-01&t=638747715520429162&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=bcVqQCjwSp5U7wS-W9mkZ0xtBxP-2YDr5ZSCBo4wSaHaHBjgel3tTUQ63R0gExI6gm-04pe9siA38X_R7VWVnz22Tx9poi3SCYtul_T_uLC1Y4TrDR_qKh47HQtRwu4DugyLeVG-0OkcNbbBTcPNYjU1XcpXhpI2aSiuJafCHSbcEkPdkRdUdJIAX6M8sFeNhI6fNiMEMFXj12vXxsUpPpcA5ALIK9hQbYngZ1ZZPHEQdZUuOfu_TgFdWrLTvlSR4fEoCxdghvIcDop3CywrYnXdPIzYOMxCrpg0SBYucQ_6CRuMvxaYHVqul-QXjk1rpceyrzBWGjiCyRS6CzRwyQ&h=YWskvTRMli0uA3LuQXanq8bmZQUITZKuOrLIpvvJuMM
response:
body:
string: '{"status":"Succeeded"}'
@@ -4439,7 +4724,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:34:38 GMT
+ - Mon, 10 Feb 2025 08:07:24 GMT
expires:
- '-1'
pragma:
@@ -4453,7 +4738,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 886A73C9810C498D8063D0BB8F51EDFD Ref B: TYO201100116051 Ref C: 2024-08-26T09:34:38Z'
+ - 'Ref A: F43CE7E47AEB4F84B14167DE208FFBE3 Ref B: SEL221051802019 Ref C: 2025-02-10T08:07:23Z'
status:
code: 200
message: OK
@@ -4469,24 +4754,24 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg --subnet --vnet-name
- --nsg-rule
+ - -g -n --image --admin-username --use-unmanaged-disk --ssh-key-value --ppg
+ --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/vm_deploy_jwCGZoVEPanzRQwh321ioNZQwm1s8WJk","name":"vm_deploy_jwCGZoVEPanzRQwh321ioNZQwm1s8WJk","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17200587395662328399","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-26T09:34:18.0644317Z","duration":"PT42.1086445S","correlationId":"45b78351-1076-4b66-81c2-690b540f949d","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/vm_deploy_5lk2e52qhH4S9Ub4qSKu4mfmTEqRqK3f","name":"vm_deploy_5lk2e52qhH4S9Ub4qSKu4mfmTEqRqK3f","type":"Microsoft.Resources/deployments","properties":{"templateHash":"9933740111776631344","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-02-10T08:06:54.7575389Z","duration":"PT1M4.182274S","correlationId":"0109b454-41c0-4648-83ed-0c781df940fc","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Storage/storageAccounts/vhdstoragec24361189f8f74","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstoragec24361189f8f74"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Storage/storageAccounts/vhdstoragec24361189f8f74"}]}}'
headers:
cache-control:
- no-cache
content-length:
- - '3226'
+ - '3774'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:34:39 GMT
+ - Mon, 10 Feb 2025 08:07:25 GMT
expires:
- '-1'
pragma:
@@ -4500,7 +4785,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 34D6A1CAA6E544039E0AF6A1A0CC45CC Ref B: TYO201100116051 Ref C: 2024-08-26T09:34:38Z'
+ - 'Ref A: 32641DFEC3A84ABD9F73C1024B0EC0EC Ref B: SEL221051802019 Ref C: 2025-02-10T08:07:24Z'
status:
code: 200
message: OK
@@ -4516,10 +4801,10 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg --subnet --vnet-name
- --nsg-rule
+ - -g -n --image --admin-username --use-unmanaged-disk --ssh-key-value --ppg
+ --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2024-07-01
response:
@@ -4528,24 +4813,24 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"9df22318-27fa-4ebf-968d-13cd242e46e7\"\
- ,\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_HYRWAQIUX6TMH74MJ3ZZSIMRFDNARVR3ZSQBACSTFENBR4PWRXPOVA/providers/Microsoft.Compute/proximityPlacementGroups/myppg\"\
+ : \"Succeeded\",\r\n \"vmId\": \"95c6f6ef-0a59-41d3-908b-7a5be1ec96ba\"\
+ ,\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_VICUY76HQBMGHPRG4WF5TZVCFHCA3RAZVWDOC3KE2ZSUJZOWYMLQXN/providers/Microsoft.Compute/proximityPlacementGroups/myppg\"\
\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n\
\ \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\
\n \"sku\": \"10\",\r\n \"version\": \"latest\",\r\n \
\ \"exactVersion\": \"0.20240430.1733\"\r\n },\r\n \"osDisk\": {\r\
- \n \"osType\": \"Linux\",\r\n \"name\": \"vm1_OsDisk_1_6c0fdd4544504ebb9aef56ba5c03c681\"\
- ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\
- ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_6c0fdd4544504ebb9aef56ba5c03c681\"\
- \r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\
- : 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\"\
- : {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"debian\"\
- ,\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\
- : true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n \
- \ {\r\n \"path\": \"/home/debian/.ssh/authorized_keys\",\r\n\
- \ \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\
- \ aaa@foo.com\\n\"\r\n }\r\n ]\r\n },\r\n\
+ \n \"osType\": \"Linux\",\r\n \"name\": \"osdisk_c24361189f\"\
+ ,\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \
+ \ \"uri\": \"https://vhdstoragec24361189f8f74.blob.core.windows.net/vhds/osdisk_c24361189f.vhd\"\
+ \r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"deleteOption\"\
+ : \"Detach\",\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\"\
+ : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\"\
+ ,\r\n \"adminUsername\": \"debian\",\r\n \"linuxConfiguration\"\
+ : {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\"\
+ : {\r\n \"publicKeys\": [\r\n {\r\n \"path\"\
+ : \"/home/debian/.ssh/authorized_keys\",\r\n \"keyData\": \"\
+ ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\
+ \ test@example.com\\n\"\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 },\r\n \"secrets\": [],\r\n\
@@ -4558,32 +4843,32 @@ interactions:
: [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\
,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"\
Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \
- \ \"time\": \"2024-08-26T09:34:17+00:00\"\r\n }\r\n \
+ \ \"time\": \"2025-02-10T08:06:52+00:00\"\r\n }\r\n \
\ ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\":\
- \ [\r\n {\r\n \"name\": \"vm1_OsDisk_1_6c0fdd4544504ebb9aef56ba5c03c681\"\
- ,\r\n \"statuses\": [\r\n {\r\n \"code\"\
- : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\
- \n \"displayStatus\": \"Provisioning succeeded\",\r\n \
- \ \"time\": \"2024-08-26T09:33:51.6382299+00:00\"\r\n }\r\
- \n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\"\
- ,\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\
- ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\
- \ succeeded\",\r\n \"time\": \"2024-08-26T09:34:13.8261855+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 \"code\": \"ColocationStatus/Aligned\"\
- ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Aligned\"\
- \r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2024-08-26T09:33:48.7475506+00:00\"\
- \r\n },\r\n \"etag\": \"\\\"1\\\"\"\r\n}"
+ \ [\r\n {\r\n \"name\": \"osdisk_c24361189f\",\r\n \
+ \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\
+ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\"\
+ : \"Provisioning succeeded\",\r\n \"time\": \"2025-02-10T08:06:23.8921562+00:00\"\
+ \r\n }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\"\
+ : \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"\
+ ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \
+ \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\"\
+ : \"2025-02-10T08:06:52.0488731+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 \"code\": \"ColocationStatus/Aligned\",\r\n \"level\"\
+ : \"Info\",\r\n \"displayStatus\": \"Aligned\"\r\n }\r\n \
+ \ ]\r\n },\r\n \"timeCreated\": \"2025-02-10T08:06:23.4233989+00:00\"\
+ \r\n },\r\n \"etag\": \"\\\"2\\\"\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '4583'
+ - '4379'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:34:40 GMT
+ - Mon, 10 Feb 2025 08:07:25 GMT
expires:
- '-1'
pragma:
@@ -4594,12 +4879,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGetSubscriptionMaximum;23990,Microsoft.Compute/LowCostGetResource;33
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;33
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: EA0E744AD7AC47088C3CD38E70D115E5 Ref B: TYO201100117033 Ref C: 2024-08-26T09:34:39Z'
+ - 'Ref A: B6A98D8AD8AD4D9AA25210747AC4E75A Ref B: SEL221051805037 Ref C: 2025-02-10T08:07:25Z'
status:
code: 200
message: ''
@@ -4615,51 +4902,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg --subnet --vnet-name
- --nsg-rule
+ - -g -n --image --admin-username --use-unmanaged-disk --ssh-key-value --ppg
+ --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2022-01-01
response:
body:
- string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
- ,\r\n \"etag\": \"W/\\\"908c5cef-f384-4d79-934a-3c66d121e736\\\"\",\r\n \
- \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"resourceGuid\": \"2d422ae0-d6cf-4065-ab4f-139bfc45f6b7\",\r\n \
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\"\
- ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\
- ,\r\n \"etag\": \"W/\\\"908c5cef-f384-4d79-934a-3c66d121e736\\\"\"\
- ,\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\"\
- ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\
- ,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\
- : \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\":\
- \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\
- \r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- \r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\
- : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\
- \ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\
- internalDomainNameSuffix\": \"wl1ivmbhqkju5dqcavilhvc0lg.dx.internal.cloudapp.net\"\
- \r\n },\r\n \"macAddress\": \"00-0D-3A-5B-C8-F5\",\r\n \"vnetEncryptionSupported\"\
- : false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\"\
- : {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\
- \r\n },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachines/vm1\"\
- \r\n },\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\
- \n \"nicType\": \"Standard\",\r\n \"allowPort25Out\": true,\r\n \"\
- auxiliaryMode\": \"None\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\
- ,\r\n \"location\": \"westus\",\r\n \"kind\": \"Regular\"\r\n}"
+ string: '{"name":"vm1VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","etag":"W/\"38d2405d-ca31-4b82-91a4-1bc59bc4d05b\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"780e3f60-99f4-432a-8a14-17dbe53271a2","ipConfigurations":[{"name":"ipconfigvm1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1","etag":"W/\"38d2405d-ca31-4b82-91a4-1bc59bc4d05b\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"4rjtxlzmp2nejeasvql10gcykc.dx.internal.cloudapp.net"},"macAddress":"00-0D-3A-34-9B-41","vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachines/vm1"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":true,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"westus","kind":"Regular"}'
headers:
cache-control:
- no-cache
content-length:
- - '2439'
+ - '1993'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:34:41 GMT
+ - Mon, 10 Feb 2025 08:07:26 GMT
etag:
- - W/"908c5cef-f384-4d79-934a-3c66d121e736"
+ - W/"38d2405d-ca31-4b82-91a4-1bc59bc4d05b"
expires:
- '-1'
pragma:
@@ -4671,11 +4933,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 5bcd6d30-152b-42e3-9ae8-94e44041fbde
+ - e404bc58-8e79-4b95-b1c6-4b33cf227104
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 8B25D3ADB87047F68E2F7E93610DCD8B Ref B: TYO201100117023 Ref C: 2024-08-26T09:34:40Z'
+ - 'Ref A: C183F4389F8840249EE04A9A15FADFBC Ref B: SEL221051801049 Ref C: 2025-02-10T08:07:26Z'
status:
code: 200
message: OK
@@ -4691,36 +4953,26 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --admin-username --ssh-key-value --ppg --subnet --vnet-name
- --nsg-rule
+ - -g -n --image --admin-username --use-unmanaged-disk --ssh-key-value --ppg
+ --subnet --vnet-name --nsg-rule
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2022-01-01
response:
body:
- string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\
- ,\r\n \"etag\": \"W/\\\"4be54fc4-252c-45b3-94a4-485595ebadbd\\\"\",\r\n \
- \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n\
- \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6f7fdf11-0b67-43b7-b97a-dd06ab30ace3\"\
- ,\r\n \"ipAddress\": \"13.83.90.31\",\r\n \"publicIPAddressVersion\"\
- : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\"\
- : 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\
- \r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\
- \n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\
- \r\n }\r\n}"
+ string: '{"name":"vm1PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","etag":"W/\"f29e2564-f21d-4117-9ac4-834a21b043e2\"","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"3ceb3c72-bdd7-47aa-bf5e-b21a5a37bb6c","ipAddress":"52.137.188.77","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}'
headers:
cache-control:
- no-cache
content-length:
- - '926'
+ - '793'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:34:42 GMT
+ - Mon, 10 Feb 2025 08:07:26 GMT
etag:
- - W/"4be54fc4-252c-45b3-94a4-485595ebadbd"
+ - W/"f29e2564-f21d-4117-9ac4-834a21b043e2"
expires:
- '-1'
pragma:
@@ -4732,11 +4984,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 239205bb-4d6e-4c9c-b61a-6c8168962c6d
+ - e956240c-ce73-4221-a111-06a88432d46d
x-ms-ratelimit-remaining-subscription-global-reads:
- '3748'
x-msedge-ref:
- - 'Ref A: 51CA04D967AD4D2782E424CB2DFE7B19 Ref B: TYO201151005031 Ref C: 2024-08-26T09:34:42Z'
+ - 'Ref A: 7725C78025D7490EAB886510BD72BC26 Ref B: SEL221051802051 Ref C: 2025-02-10T08:07:27Z'
status:
code: 200
message: OK
@@ -4754,30 +5006,23 @@ interactions:
ParameterSetName:
- -g --vnet-name -n --default-outbound-access
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-01-01
response:
body:
- string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- ,\r\n \"etag\": \"W/\\\"97cb4426-c928-41e0-8679-a96f4fd8d25c\\\"\",\r\n \
- \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
- addressPrefix\": \"10.0.0.0/24\",\r\n \"ipamPoolPrefixAllocations\": [],\r\
- \n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_HYRWAQIUX6TMH74MJ3ZZSIMRFDNARVR3ZSQBACSTFENBR4PWRXPOVA/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1\"\
- \r\n }\r\n ],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\
- : \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\
- \n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}"
+ string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"2295cc54-4917-44d8-a332-542421a9a323\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_VICUY76HQBMGHPRG4WF5TZVCFHCA3RAZVWDOC3KE2ZSUJZOWYMLQXN/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}'
headers:
cache-control:
- no-cache
content-length:
- - '874'
+ - '730'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:34:43 GMT
+ - Mon, 10 Feb 2025 08:07:28 GMT
etag:
- - W/"97cb4426-c928-41e0-8679-a96f4fd8d25c"
+ - W/"2295cc54-4917-44d8-a332-542421a9a323"
expires:
- '-1'
pragma:
@@ -4789,11 +5034,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 20af58a1-5652-4e20-9669-25c04c2550bb
+ - 0306d754-bde2-4e71-8714-68e5b1e38243
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 4DBC86079A3542E6B971B2E0DC9D3A7F Ref B: TYO201100115017 Ref C: 2024-08-26T09:34:42Z'
+ - 'Ref A: 151BB4FA1FE549C19F5FDC79F3973CEF Ref B: SEL221051803025 Ref C: 2025-02-10T08:07:29Z'
status:
code: 200
message: OK
@@ -4818,33 +5063,25 @@ interactions:
ParameterSetName:
- -g --vnet-name -n --default-outbound-access
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-01-01
response:
body:
- string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- ,\r\n \"etag\": \"W/\\\"73617ec8-2e31-4a7e-9de7-747210e2bc0a\\\"\",\r\n \
- \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\
- addressPrefix\": \"10.0.0.0/24\",\r\n \"ipamPoolPrefixAllocations\": [],\r\
- \n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\
- \r\n }\r\n ],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\
- : \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\
- ,\r\n \"defaultOutboundAccess\": false\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\
- \r\n}"
+ string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"03e31366-9ab8-4f66-a45e-a530a61ef79f\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}'
headers:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/49046ef2-2ca9-4db4-827f-c509efabe395?api-version=2024-01-01&t=638602616843945049&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=KIF7pdD-bT5bUAcCWdaO89SGhPvmFJhdG_VcPZu-sWcN_6F9_6hhV3aRYitZA_jfk0GgjUM8lGU2HOed3B68OvN8MVSiiHTGzNN2dij02_-af-4WIiZp2AA19JiiAM_shqCt-Vha8_-b77zVtMPmiYwmjFsTI6l0H-_co7sALpuoW9_FhDu3xrtTD7r-csTrhChGU0MNN2SE6jEa7hwtoqHeWuh6qVo6wNbfr2y0rlBgpEGv-7YQEmLVDesYZ90eSE0rIcrCqf8ePmK7rh5ZZcjjCZWYDXzr9aawtE0jQCMdftMzE-VqhbvBAx2CcuSkMJ24n26iSgxRhz8571ehyQ&h=dkuyy6Eg5SqddKR1zy0PQVq0AowcllS4V9YE5dVDrnY
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b372064f-0c89-4b09-bbc8-77d89a8b256b?api-version=2024-01-01&t=638747716505105232&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=j1hOtdJfcA0xk63tvN0Ha046-ZfnkmivlFTNJ-1CV-RiA15_i3NF8-bq806Qq4X6MAwfO21tXtrixcCVTKAyBAkpO_H3xzyqfkEQGSNKQeiwFsBA4rQGi8uoSo2_xR7qjFHfZLBx3x2QnL_HBfSbEnqa9T1p2txtjhtFp9yo3DY0UILRgtFC-IqhcJzmju2HyT3f-p9Pbb08gikfvlG8X3t-yXvdwx9BjjBvcj6UdvJ-P_2Lg2druegdyOaVwbGXEnhYHUT5lE_NjLXgTjCEUlMm92RWLnC7E2ardHtTQKiHsLvz0LlGSQsYzUgm8EuoDbJgkEGj92UNykPdS79tWA&h=8fYCItrECE-PZ-IInMfLYR63bchI0qTQLtplTbasHcQ
cache-control:
- no-cache
content-length:
- - '862'
+ - '711'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:34:44 GMT
+ - Mon, 10 Feb 2025 08:07:29 GMT
expires:
- '-1'
pragma:
@@ -4856,13 +5093,13 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 1d77672f-9fea-4cc8-9af3-04d6336296a2
+ - de5c75eb-3af3-4380-a1bd-244248d47d0a
x-ms-ratelimit-remaining-subscription-global-writes:
- '2999'
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: EAE07C7729F7433F83B201C4E34F0C5B Ref B: TYO201100115017 Ref C: 2024-08-26T09:34:43Z'
+ - 'Ref A: 0D114FC501E14DB2B56DAAB7D0BB5F99 Ref B: SEL221051803025 Ref C: 2025-02-10T08:07:29Z'
status:
code: 200
message: OK
@@ -4880,21 +5117,21 @@ interactions:
ParameterSetName:
- -g --vnet-name -n --default-outbound-access
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/49046ef2-2ca9-4db4-827f-c509efabe395?api-version=2024-01-01&t=638602616843945049&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=KIF7pdD-bT5bUAcCWdaO89SGhPvmFJhdG_VcPZu-sWcN_6F9_6hhV3aRYitZA_jfk0GgjUM8lGU2HOed3B68OvN8MVSiiHTGzNN2dij02_-af-4WIiZp2AA19JiiAM_shqCt-Vha8_-b77zVtMPmiYwmjFsTI6l0H-_co7sALpuoW9_FhDu3xrtTD7r-csTrhChGU0MNN2SE6jEa7hwtoqHeWuh6qVo6wNbfr2y0rlBgpEGv-7YQEmLVDesYZ90eSE0rIcrCqf8ePmK7rh5ZZcjjCZWYDXzr9aawtE0jQCMdftMzE-VqhbvBAx2CcuSkMJ24n26iSgxRhz8571ehyQ&h=dkuyy6Eg5SqddKR1zy0PQVq0AowcllS4V9YE5dVDrnY
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b372064f-0c89-4b09-bbc8-77d89a8b256b?api-version=2024-01-01&t=638747716505105232&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=j1hOtdJfcA0xk63tvN0Ha046-ZfnkmivlFTNJ-1CV-RiA15_i3NF8-bq806Qq4X6MAwfO21tXtrixcCVTKAyBAkpO_H3xzyqfkEQGSNKQeiwFsBA4rQGi8uoSo2_xR7qjFHfZLBx3x2QnL_HBfSbEnqa9T1p2txtjhtFp9yo3DY0UILRgtFC-IqhcJzmju2HyT3f-p9Pbb08gikfvlG8X3t-yXvdwx9BjjBvcj6UdvJ-P_2Lg2druegdyOaVwbGXEnhYHUT5lE_NjLXgTjCEUlMm92RWLnC7E2ardHtTQKiHsLvz0LlGSQsYzUgm8EuoDbJgkEGj92UNykPdS79tWA&h=8fYCItrECE-PZ-IInMfLYR63bchI0qTQLtplTbasHcQ
response:
body:
- string: "{\r\n \"status\": \"Succeeded\"\r\n}"
+ string: '{"status":"Succeeded"}'
headers:
cache-control:
- no-cache
content-length:
- - '29'
+ - '22'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:34:44 GMT
+ - Mon, 10 Feb 2025 08:07:30 GMT
expires:
- '-1'
pragma:
@@ -4906,11 +5143,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 6458d00b-736a-41fa-83a2-f98f62e16ccf
+ - 7e1c92ed-ffae-4b31-85bb-507fd2ed59f9
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: FDF7FF612F394687BA7B0B650F4854A8 Ref B: TYO201100115017 Ref C: 2024-08-26T09:34:44Z'
+ - 'Ref A: 7B7CB8285BFA4D7EAECA0E8C878B104C Ref B: SEL221051803025 Ref C: 2025-02-10T08:07:30Z'
status:
code: 200
message: OK
@@ -4928,31 +5165,23 @@ interactions:
ParameterSetName:
- -g --vnet-name -n --default-outbound-access
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-01-01
response:
body:
- string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- ,\r\n \"etag\": \"W/\\\"4a24d62d-9199-4ec0-bfbf-0d50b2c6ba42\\\"\",\r\n \
- \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\
- addressPrefix\": \"10.0.0.0/24\",\r\n \"ipamPoolPrefixAllocations\": [],\r\
- \n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_HYRWAQIUX6TMH74MJ3ZZSIMRFDNARVR3ZSQBACSTFENBR4PWRXPOVA/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1\"\
- \r\n }\r\n ],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\
- : \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\
- ,\r\n \"defaultOutboundAccess\": false\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\
- \r\n}"
+ string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"653494f8-3553-4fc9-a002-6722c2048d52\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_VICUY76HQBMGHPRG4WF5TZVCFHCA3RAZVWDOC3KE2ZSUJZOWYMLQXN/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}'
headers:
cache-control:
- no-cache
content-length:
- - '911'
+ - '760'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:34:44 GMT
+ - Mon, 10 Feb 2025 08:07:30 GMT
etag:
- - W/"4a24d62d-9199-4ec0-bfbf-0d50b2c6ba42"
+ - W/"653494f8-3553-4fc9-a002-6722c2048d52"
expires:
- '-1'
pragma:
@@ -4964,11 +5193,225 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 71ac4ca5-12e7-4090-bf48-d1adec38143d
+ - a32b963b-4155-4afa-b5a6-25054c0ed9f4
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3748'
+ x-msedge-ref:
+ - 'Ref A: 63B5553AA5854D0E8B1BBA971BD98E36 Ref B: SEL221051803025 Ref C: 2025-02-10T08:07:30Z'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network nsg create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001","name":"cli_test_ppg_vm_vmss_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_with_related_resources","date":"2025-02-10T08:05:26Z","module":"vm","Creator":"zhuyan@microsoft.com","DateCreated":"2025-02-10T08:05:33Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '457'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 10 Feb 2025 08:07:31 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-msedge-ref:
+ - 'Ref A: F603FD0AB5A549A0874345B241831FCB Ref B: SEL221051802037 Ref C: 2025-02-10T08:07:31Z'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "westus"}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network nsg create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '22'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1?api-version=2022-01-01
+ response:
+ body:
+ string: '{"name":"nsg1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1","etag":"W/\"198a9bd3-f07d-4427-970d-c2435000c276\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","properties":{"provisioningState":"Updating","resourceGuid":"7f3d7595-daa1-4353-b923-5b9b5060dc01","securityRules":[],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetInBound","etag":"W/\"198a9bd3-f07d-4427-970d-c2435000c276\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Updating","description":"Allow
+ inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"198a9bd3-f07d-4427-970d-c2435000c276\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Updating","description":"Allow
+ inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllInBound","etag":"W/\"198a9bd3-f07d-4427-970d-c2435000c276\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Updating","description":"Deny
+ all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"198a9bd3-f07d-4427-970d-c2435000c276\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Updating","description":"Allow
+ outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"198a9bd3-f07d-4427-970d-c2435000c276\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Updating","description":"Allow
+ outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllOutBound","etag":"W/\"198a9bd3-f07d-4427-970d-c2435000c276\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Updating","description":"Deny
+ all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}]}}'
+ headers:
+ azure-asyncnotification:
+ - Enabled
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e7dd6cde-d36c-4ae6-9120-089dcee28b07?api-version=2022-01-01&t=638747716549557114&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=Ejg40pGf_oEBBB7IEAwBefQhv5asnmsYJGrtYIv1dsBZn3J3TMsYl6buvVKtmDSKbptBvy5qbDqUUZN074N_dbrGWlAFfuvpv5kU7H9p7MPS2vc-USnsURfbeoKd15y5fBXjh2AtDuu4zjyU-fbOrfdfWtMqfRN5sAdTRTJsStxlZjZ0qNk62qk7crQbkkukvEUx3LIEaC99zaS7O-ymyeyG5g8w4GeN8ZO2LX853Ns9LgHZtHDEYv-hfWJTspNdF0t0LpiD0MG4_xWW5ySTLWOrz4UA8iZDLsHkzKna2D12_Y5msOGevkHvu6lV3R8w5dwZAOc9Rp6zvdDTstJa5w&h=j1z98Ggz7WGmrNpOiYXLRuOOUp7wJlTE_Q_0MoJ36Jg
+ cache-control:
+ - no-cache
+ content-length:
+ - '4941'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 10 Feb 2025 08:07:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-cache:
+ - CONFIG_NOCACHE
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 1d0be0ea-f1f3-40e4-b54a-93eac55a2ac1
+ x-ms-ratelimit-remaining-subscription-global-writes:
+ - '2999'
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '199'
+ x-msedge-ref:
+ - 'Ref A: 0D4B7B0F3867495193B28B9C301C4460 Ref B: SEL221051801035 Ref C: 2025-02-10T08:07:32Z'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network nsg create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e7dd6cde-d36c-4ae6-9120-089dcee28b07?api-version=2022-01-01&t=638747716549557114&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=Ejg40pGf_oEBBB7IEAwBefQhv5asnmsYJGrtYIv1dsBZn3J3TMsYl6buvVKtmDSKbptBvy5qbDqUUZN074N_dbrGWlAFfuvpv5kU7H9p7MPS2vc-USnsURfbeoKd15y5fBXjh2AtDuu4zjyU-fbOrfdfWtMqfRN5sAdTRTJsStxlZjZ0qNk62qk7crQbkkukvEUx3LIEaC99zaS7O-ymyeyG5g8w4GeN8ZO2LX853Ns9LgHZtHDEYv-hfWJTspNdF0t0LpiD0MG4_xWW5ySTLWOrz4UA8iZDLsHkzKna2D12_Y5msOGevkHvu6lV3R8w5dwZAOc9Rp6zvdDTstJa5w&h=j1z98Ggz7WGmrNpOiYXLRuOOUp7wJlTE_Q_0MoJ36Jg
+ response:
+ body:
+ string: '{"status":"Succeeded"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '22'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 10 Feb 2025 08:07: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-arm-service-request-id:
+ - 8a5e0ab8-e996-40ec-b507-ea5417de5c30
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3748'
+ x-msedge-ref:
+ - 'Ref A: 50714DCF538C42EAA35C920C0E8FAA49 Ref B: SEL221051801035 Ref C: 2025-02-10T08:07:35Z'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network nsg create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1?api-version=2022-01-01
+ response:
+ body:
+ string: '{"name":"nsg1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1","etag":"W/\"2c7d1a2e-ee1f-448d-bc99-413b85901f32\"","type":"Microsoft.Network/networkSecurityGroups","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"7f3d7595-daa1-4353-b923-5b9b5060dc01","securityRules":[],"defaultSecurityRules":[{"name":"AllowVnetInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetInBound","etag":"W/\"2c7d1a2e-ee1f-448d-bc99-413b85901f32\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow
+ inbound traffic from all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowAzureLoadBalancerInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowAzureLoadBalancerInBound","etag":"W/\"2c7d1a2e-ee1f-448d-bc99-413b85901f32\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow
+ inbound traffic from azure load balancer","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"AzureLoadBalancer","destinationAddressPrefix":"*","access":"Allow","priority":65001,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllInBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllInBound","etag":"W/\"2c7d1a2e-ee1f-448d-bc99-413b85901f32\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Deny
+ all inbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Inbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowVnetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowVnetOutBound","etag":"W/\"2c7d1a2e-ee1f-448d-bc99-413b85901f32\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow
+ outbound traffic from all VMs to all VMs in VNET","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"VirtualNetwork","destinationAddressPrefix":"VirtualNetwork","access":"Allow","priority":65000,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"AllowInternetOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/AllowInternetOutBound","etag":"W/\"2c7d1a2e-ee1f-448d-bc99-413b85901f32\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Allow
+ outbound traffic from all VMs to Internet","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"Internet","access":"Allow","priority":65001,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}},{"name":"DenyAllOutBound","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1/defaultSecurityRules/DenyAllOutBound","etag":"W/\"2c7d1a2e-ee1f-448d-bc99-413b85901f32\"","type":"Microsoft.Network/networkSecurityGroups/defaultSecurityRules","properties":{"provisioningState":"Succeeded","description":"Deny
+ all outbound traffic","protocol":"*","sourcePortRange":"*","destinationPortRange":"*","sourceAddressPrefix":"*","destinationAddressPrefix":"*","access":"Deny","priority":65500,"direction":"Outbound","sourcePortRanges":[],"destinationPortRanges":[],"sourceAddressPrefixes":[],"destinationAddressPrefixes":[]}}]}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4948'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 10 Feb 2025 08:07:36 GMT
+ etag:
+ - W/"2c7d1a2e-ee1f-448d-bc99-413b85901f32"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-cache:
+ - CONFIG_NOCACHE
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - d57421bf-6513-4f83-9c93-1d6eb9b710eb
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: B863E82BA22E46ABAB40F3027152DA24 Ref B: TYO201100115017 Ref C: 2024-08-26T09:34:44Z'
+ - 'Ref A: 184FDB314F5747A7B3B38AC574C239DC Ref B: SEL221051801035 Ref C: 2025-02-10T08:07:35Z'
status:
code: 200
message: OK
@@ -4985,22 +5428,23 @@ interactions:
- keep-alive
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --ppg --orchestration-mode
+ --nsg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001","name":"cli_test_ppg_vm_vmss_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_with_related_resources","date":"2024-08-26T09:33:11Z","module":"vm","DateCreated":"2024-08-26T09:33:14Z","Creator":"aaa@foo.com"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001","name":"cli_test_ppg_vm_vmss_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_with_related_resources","date":"2025-02-10T08:05:26Z","module":"vm","Creator":"zhuyan@microsoft.com","DateCreated":"2025-02-10T08:05:33Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
content-length:
- - '463'
+ - '457'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:34:45 GMT
+ - Mon, 10 Feb 2025 08:07:36 GMT
expires:
- '-1'
pragma:
@@ -5012,9 +5456,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3747'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 743EAFB19EA94BACB309FA6766A55824 Ref B: TYO201100116027 Ref C: 2024-08-26T09:34:45Z'
+ - 'Ref A: 97E5BCE25573429B8848FEBEC41FA2C1 Ref B: SEL221051804049 Ref C: 2025-02-10T08:07:36Z'
status:
code: 200
message: OK
@@ -5031,8 +5475,9 @@ interactions:
- keep-alive
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --ppg --orchestration-mode
+ --nsg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions?$top=1&$orderby=name%20desc&api-version=2024-07-01
response:
@@ -5048,7 +5493,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:34:46 GMT
+ - Mon, 10 Feb 2025 08:07:37 GMT
expires:
- '-1'
pragma:
@@ -5060,11 +5505,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15995,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43967
+ - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43993
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: DAB5A5CBE836416596F5A8E04B27800A Ref B: TYO201151002011 Ref C: 2024-08-26T09:34:45Z'
+ - 'Ref A: F1BB7E621C344C1AB927AF509E0C75AA Ref B: SEL221051503027 Ref C: 2025-02-10T08:07:37Z'
status:
code: 200
message: OK
@@ -5081,8 +5526,9 @@ interactions:
- keep-alive
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --ppg --orchestration-mode
+ --nsg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Debian/artifacttypes/vmimage/offers/debian-10/skus/10/versions/0.20240430.1733?api-version=2024-07-01
response:
@@ -5109,7 +5555,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:34:46 GMT
+ - Mon, 10 Feb 2025 08:07:37 GMT
expires:
- '-1'
pragma:
@@ -5121,11 +5567,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73973
+ - Microsoft.Compute/GetVMImageFromLocation3Min;12996,Microsoft.Compute/GetVMImageFromLocation30Min;73996
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3748'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 2605D809D95A4A58B0569F156644E7EA Ref B: TYO201100115051 Ref C: 2024-08-26T09:34:46Z'
+ - 'Ref A: 12E148D7E4414A0196A841DB69E16713 Ref B: SEL221051503029 Ref C: 2025-02-10T08:07:38Z'
status:
code: 200
message: OK
@@ -5142,43 +5588,23 @@ interactions:
- keep-alive
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --ppg --orchestration-mode
+ --nsg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks?api-version=2022-01-01
response:
body:
- string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vnet1\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1\"\
- ,\r\n \"etag\": \"W/\\\"4a24d62d-9199-4ec0-bfbf-0d50b2c6ba42\\\"\",\r\
- \n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \
- \ \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b08af6b2-8227-4f93-8e02-0550b3d45a5e\"\
- ,\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \
- \ \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\"\
- : [\r\n {\r\n \"name\": \"subnet1\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
- ,\r\n \"etag\": \"W/\\\"4a24d62d-9199-4ec0-bfbf-0d50b2c6ba42\\\"\
- \",\r\n \"properties\": {\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n\
- \ \"ipConfigurations\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_HYRWAQIUX6TMH74MJ3ZZSIMRFDNARVR3ZSQBACSTFENBR4PWRXPOVA/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1\"\
- \r\n }\r\n ],\r\n \"delegations\"\
- : [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\
- \n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\n \
- \ \"defaultOutboundAccess\": false\r\n },\r\n \
- \ \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \
- \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \
- \ \"enableDdosProtection\": false\r\n }\r\n }\r\n ]\r\n}"
+ string: '{"value":[{"name":"vnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1","etag":"W/\"653494f8-3553-4fc9-a002-6722c2048d52\"","type":"Microsoft.Network/virtualNetworks","location":"westus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"af3b53f4-7f2c-441a-9012-ac17bd185852","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"653494f8-3553-4fc9-a002-6722c2048d52\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_VICUY76HQBMGHPRG4WF5TZVCFHCA3RAZVWDOC3KE2ZSUJZOWYMLQXN/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}]}'
headers:
cache-control:
- no-cache
content-length:
- - '1811'
+ - '1287'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:34:47 GMT
+ - Mon, 10 Feb 2025 08:07:38 GMT
expires:
- '-1'
pragma:
@@ -5190,11 +5616,13 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - eefc4ea6-bd04-4b09-96e2-762552d49097
+ - 775b84dc-b918-420c-9843-65ab9785def1
+ x-ms-original-request-ids:
+ - 1b0833fa-fe3a-49c0-b7c0-9e73848a20f8
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 67BB62A9EA194179AC92E5FC49DBB61D Ref B: TYO201151003062 Ref C: 2024-08-26T09:34:47Z'
+ - 'Ref A: F3A0085D214949E58C23D898072958FF Ref B: SEL221051804009 Ref C: 2025-02-10T08:07:38Z'
status:
code: 200
message: OK
@@ -5211,8 +5639,9 @@ interactions:
- keep-alive
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --ppg --orchestration-mode
+ --nsg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute?api-version=2022-09-01
response:
@@ -5225,8 +5654,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualMachines","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -5235,8 +5664,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -5245,20 +5674,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"virtualMachines/extensions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
@@ -5268,8 +5697,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualMachineScaleSets","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -5278,8 +5707,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -5288,20 +5717,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"virtualMachineScaleSets/extensions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
@@ -5311,8 +5740,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2015-06-15","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2015-06-15","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -5320,8 +5749,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/extensions","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/extensions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -5329,8 +5758,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -5338,8 +5767,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -5347,8 +5776,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -5356,8 +5785,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/operations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -5365,8 +5794,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/vmSizes","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/vmSizes","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -5374,8 +5803,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/runCommands","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/runCommands","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -5383,8 +5812,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachines","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachines","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -5392,8 +5821,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachineScaleSets","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachineScaleSets","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -5401,8 +5830,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/publishers","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/publishers","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -5410,8 +5839,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"operations","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"operations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -5419,8 +5848,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"None"},{"resourceType":"virtualMachines/runCommands","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"None"},{"resourceType":"virtualMachines/runCommands","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -5428,8 +5857,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2022-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2023-09-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualMachineScaleSets/applications","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -5438,8 +5867,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"virtualMachines/VMApplications","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"virtualMachines/VMApplications","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -5447,9 +5876,9 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2022-03-01","capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"locations/edgeZones","locations":[],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/vmimages","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2023-09-01","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"locations/edgeZones","locations":[],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/vmimages","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -5457,8 +5886,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/publishers","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/publishers","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -5466,8 +5895,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"restorePointCollections","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"restorePointCollections","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -5475,8 +5904,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"defaultApiVersion":"2022-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"defaultApiVersion":"2023-09-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"restorePointCollections/restorePoints","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -5485,8 +5914,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"capabilities":"None"},{"resourceType":"proximityPlacementGroups","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"capabilities":"None"},{"resourceType":"proximityPlacementGroups","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -5494,8 +5923,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":[]},{"location":"East
@@ -5504,14 +5933,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"sshPublicKeys","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -5520,8 +5950,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2022-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2023-09-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"capacityReservationGroups","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -5530,8 +5960,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -5540,15 +5970,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"capacityReservationGroups/capacityReservations","locations":["East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"capacityReservationGroups/capacityReservations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -5556,8 +5986,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -5566,15 +5996,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"virtualMachines/metricDefinitions","locations":["East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"virtualMachines/metricDefinitions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -5582,8 +6012,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Israel
- Central","Poland Central","Italy North","Mexico Central","Spain Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2014-04-01"],"capabilities":"None"},{"resourceType":"locations/spotEvictionRates","locations":["East
+ Central","Poland Central","Italy North","Mexico Central","Spain Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2014-04-01"],"capabilities":"None"},{"resourceType":"locations/spotEvictionRates","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -5591,8 +6021,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"locations/spotPriceHistory","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"locations/spotPriceHistory","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -5600,8 +6030,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"locations/recommendations","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"locations/recommendations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -5609,8 +6039,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"locations/sharedGalleries","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"locations/sharedGalleries","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -5618,8 +6048,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/communityGalleries","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/communityGalleries","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -5627,8 +6057,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"sharedVMImages","locations":["West
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"sharedVMImages","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
@@ -5656,8 +6086,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01","2017-10-15-preview"],"capabilities":"None"},{"resourceType":"galleries","locations":["West
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01","2017-10-15-preview"],"capabilities":"None"},{"resourceType":"galleries","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
@@ -5665,8 +6095,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2023-07-03","capabilities":"SystemAssignedResourceIdentity,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2023-07-03","capabilities":"SystemAssignedResourceIdentity,
SupportsTags, SupportsLocation"},{"resourceType":"galleries/images","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -5675,8 +6105,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"galleries/images/versions","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -5685,8 +6115,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/galleries","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -5695,8 +6125,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"None"},{"resourceType":"payloadGroups","locations":["South
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"None"},{"resourceType":"payloadGroups","locations":["South
Central US","West Europe"],"apiVersions":["2024-03-03","2023-07-03"],"capabilities":"None"},{"resourceType":"galleries/applications","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -5705,8 +6135,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"galleries/applications/versions","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -5715,8 +6145,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"disks","locations":["Southeast Asia","East
US 2","Central US","West Europe","East US","North Central US","South Central
US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -5725,8 +6155,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -5735,20 +6165,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"snapshots","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -5757,14 +6187,14 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/diskoperations","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -5773,8 +6203,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"diskEncryptionSets","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"diskEncryptionSets","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -5782,8 +6212,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01"],"defaultApiVersion":"2022-03-02","capabilities":"SystemAssignedResourceIdentity,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01"],"defaultApiVersion":"2022-03-02","capabilities":"SystemAssignedResourceIdentity,
SupportsTags, SupportsLocation"},{"resourceType":"diskAccesses","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -5792,14 +6222,14 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01"],"defaultApiVersion":"2022-03-02","locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01"],"defaultApiVersion":"2022-03-02","locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"SupportsTags,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"restorePointCollections/restorePoints/diskRestorePoints","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -5808,8 +6238,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30"],"defaultApiVersion":"2022-03-02","capabilities":"None"},{"resourceType":"virtualMachineScaleSets/disks","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30"],"defaultApiVersion":"2022-03-02","capabilities":"None"},{"resourceType":"virtualMachineScaleSets/disks","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -5817,8 +6247,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"cloudServices","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"cloudServices","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -5826,8 +6256,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -5836,14 +6266,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"cloudServices/roles","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -5852,8 +6283,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/roleInstances","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/roleInstances","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -5861,8 +6292,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/csoperations","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/csoperations","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -5870,8 +6301,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/cloudServiceOsVersions","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/cloudServiceOsVersions","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -5879,8 +6310,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/cloudServiceOsFamilies","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/cloudServiceOsFamilies","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -5888,8 +6319,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/networkInterfaces","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/networkInterfaces","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -5897,8 +6328,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/roleInstances/networkInterfaces","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/roleInstances/networkInterfaces","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -5906,8 +6337,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/publicIPAddresses","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/publicIPAddresses","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -5915,17 +6346,18 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["East
- US","East US 2","West US","Central US","North Central US","South Central US","West
- Europe","Southeast Asia","Japan East","Japan West","Australia East","Australia
- Southeast","Australia Central","Brazil South","South India","Central India","West
- India","Canada Central","Canada East","West US 2","UK West","Korea Central","Korea
- South","France Central","South Africa North","UAE North","Switzerland North","Germany
- West Central","Norway East","Jio India West","West US 3","Sweden Central","Qatar
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["East
+ US","West US","Central US","North Central US","South Central US","Southeast
+ Asia","Japan East","Japan West","Australia East","Australia Southeast","Australia
+ Central","Brazil South","South India","Central India","West India","Canada
+ Central","Canada East","West US 2","UK West","Korea Central","Korea South","France
+ Central","South Africa North","UAE North","Switzerland North","Germany West
+ Central","Norway East","Jio India West","West US 3","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Spain Central","Mexico
- Central","West Central US","North Europe","UK South","East Asia","East US
- 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"images","locations":["Southeast
+ Central","New Zealand North","West Central US","East US 2","West Europe","North
+ Europe","UK South","East Asia","East US 2 EUAP","Central US EUAP","East US
+ STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"images","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -5933,51 +6365,59 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/diagnostics","locations":["West
Central US","Southeast Asia","East US 2","East US","South Central US","West
Europe","North Europe","West US 2","UK South","Australia East","South India","Central
India","West India","Korea Central","Korea South","Jio India West","Japan
- West","Japan East","East Asia","Canada Central","Canada East","South Africa
- North","Central US","West US 3","West US","UK West","France Central","UAE
- North","Australia Central","Australia Southeast","Switzerland North","Germany
- West Central","Norway East","North Central US","Brazil South","Italy North","Israel
- Central","Spain Central","Qatar Central","Poland Central","Mexico Central","Sweden
- Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/diagnosticOperations","locations":["West
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/diagnosticOperations","locations":["West
Central US","Southeast Asia","East US 2","East US","South Central US","West
Europe","North Europe","West US 2","UK South","Australia East","South India","Central
India","West India","Korea Central","Korea South","Jio India West","Japan
- West","Japan East","East Asia","Canada Central","Canada East","South Africa
- North","Central US","West US 3","West US","UK West","France Central","UAE
- North","Australia Central","Australia Southeast","Switzerland North","Germany
- West Central","Norway East","North Central US","Brazil South","Italy North","Israel
- Central","Spain Central","Qatar Central","Poland Central","Mexico Central","Sweden
- Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/placementScores","locations":["West
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/placementScores","locations":["West
Central US","Southeast Asia","East US 2","East US","South Central US","West
Europe","North Europe","West US 2","UK South","Australia East","South India","Central
India","West India","Korea Central","Korea South","Jio India West","Japan
- West","Japan East","East Asia","Canada Central","Canada East","South Africa
- North","Central US","West US 3","West US","UK West","France Central","UAE
- North","Australia Central","Australia Southeast","Switzerland North","Germany
- West Central","Norway East","North Central US","Brazil South","Italy North","Israel
- Central","Spain Central","Qatar Central","Poland Central","Mexico Central","Sweden
- Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/placementRecommendations","locations":["West
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/placementRecommendations","locations":["West
Central US","Southeast Asia","East US 2","East US","South Central US","West
Europe","North Europe","West US 2","UK South","Australia East","South India","Central
India","West India","Korea Central","Korea South","Jio India West","Japan
- West","Japan East","East Asia","Canada Central","Canada East","South Africa
- North","Central US","West US 3","West US","UK West","France Central","UAE
- North","Australia Central","Australia Southeast","Switzerland North","Germany
- West Central","Norway East","North Central US","Brazil South","Italy North","Israel
- Central","Spain Central","Qatar Central","Poland Central","Mexico Central","Sweden
- Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/logAnalytics","locations":["East
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/logAnalytics","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -5985,8 +6425,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01"],"capabilities":"None"},{"resourceType":"hostGroups","locations":["Central
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01"],"capabilities":"None"},{"resourceType":"hostGroups","locations":["Central
US","East US 2","West Europe","Southeast Asia","France Central","North Europe","West
US 2","East US","UK South","Japan East","Japan West","East Asia","North Central
US","South Central US","Canada East","Korea Central","Brazil South","UK West","Canada
@@ -5994,8 +6434,8 @@ interactions:
Southeast","Korea South","West India","South Africa North","UAE North","Australia
Central","Switzerland North","Germany West Central","Norway East","Australia
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -6004,15 +6444,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"hostGroups/hosts","locations":["Central
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"hostGroups/hosts","locations":["Central
US","East US 2","West Europe","Southeast Asia","France Central","North Europe","West
US 2","East US","UK South","Japan East","Japan West","East Asia","North Central
US","South Central US","Canada East","Korea Central","Brazil South","UK West","Canada
@@ -6020,8 +6460,8 @@ interactions:
Southeast","Korea South","West India","South Africa North","UAE North","Australia
Central","Switzerland North","Germany West Central","Norway East","Australia
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -6030,15 +6470,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"sharedVMExtensions","locations":["East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"sharedVMExtensions","locations":["East
US 2 EUAP","Central US EUAP","East US STG","Southeast Asia","East US 2","Central
US","West Europe","East US","North Central US","South Central US","West US","North
Europe","East Asia","Brazil South","West US 2","West Central US","UK West","UK
@@ -6047,7 +6487,7 @@ interactions:
India","France Central","South Africa North","UAE North","Australia Central","Switzerland
North","Germany West Central","Norway East","Jio India West","West US 3","Sweden
Central","Qatar Central","Poland Central","Italy North","Israel Central","Spain
- Central","Mexico Central"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
+ Central","Mexico Central","New Zealand North"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"sharedVMExtensions/versions","locations":["East
US 2 EUAP","Central US EUAP","East US STG","Southeast Asia","East US 2","Central
US","West Europe","East US","North Central US","South Central US","West US","North
@@ -6057,17 +6497,39 @@ interactions:
India","France Central","South Africa North","UAE North","Australia Central","Switzerland
North","Germany West Central","Norway East","Jio India West","West US 3","Sweden
Central","Qatar Central","Poland Central","Italy North","Israel Central","Spain
- Central","Mexico Central"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
+ Central","Mexico Central","New Zealand North"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"galleries/inVMAccessControlProfiles","locations":["East
+ US 2 EUAP","Central US EUAP","East US STG","West Central US","South Central
+ US","East US 2","Southeast Asia","West Europe","West US","East US","Canada
+ Central","North Europe","North Central US","Brazil South","UK West","West
+ India","East Asia","Australia East","Japan East","Korea South","West US 2","Canada
+ East","UK South","Central India","South India","Australia Southeast","Japan
+ West","Korea Central","France Central","Central US","Australia Central","South
+ Africa North","UAE North","Switzerland North","Germany West Central","Norway
+ East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North"],"apiVersions":["2024-03-03"],"defaultApiVersion":"2024-03-03","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"galleries/inVMAccessControlProfiles/versions","locations":["East
+ US 2 EUAP","Central US EUAP","East US STG","West Central US","South Central
+ US","East US 2","Southeast Asia","West Europe","West US","East US","Canada
+ Central","North Europe","North Central US","Brazil South","UK West","West
+ India","East Asia","Australia East","Japan East","Korea South","West US 2","Canada
+ East","UK South","Central India","South India","Australia Southeast","Japan
+ West","Korea Central","France Central","Central US","Australia Central","South
+ Africa North","UAE North","Switzerland North","Germany West Central","Norway
+ East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North"],"apiVersions":["2024-03-03"],"defaultApiVersion":"2024-03-03","capabilities":"SupportsTags,
SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '101068'
+ - '105469'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:34:48 GMT
+ - Mon, 10 Feb 2025 08:07:40 GMT
expires:
- '-1'
pragma:
@@ -6081,7 +6543,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 2F23125921E84D6A99460CA8AE19DFBC Ref B: TYO201100114029 Ref C: 2024-08-26T09:34:48Z'
+ - 'Ref A: 52DBE725C78D46FA90F91D58D0F042EA Ref B: SEL221051801021 Ref C: 2025-02-10T08:07:39Z'
status:
code: 200
message: OK
@@ -6098,28 +6560,29 @@ interactions:
- keep-alive
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --ppg --orchestration-mode
+ --nsg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg?api-version=2024-07-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg?api-version=2024-11-01
response:
body:
string: "{\r\n \"name\": \"myppg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\",\r\n \"virtualMachines\": [\r\n {\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_HYRWAQIUX6TMH74MJ3ZZSIMRFDNARVR3ZSQBACSTFENBR4PWRXPOVA/providers/Microsoft.Compute/virtualMachines/VM1\"\
+ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_VICUY76HQBMGHPRG4WF5TZVCFHCA3RAZVWDOC3KE2ZSUJZOWYMLQXN/providers/Microsoft.Compute/virtualMachines/VM1\"\
\r\n }\r\n ],\r\n \"virtualMachineScaleSets\": [],\r\n \"availabilitySets\"\
: []\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '683'
+ - '668'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:34:48 GMT
+ - Mon, 10 Feb 2025 08:07:40 GMT
expires:
- '-1'
pragma:
@@ -6130,12 +6593,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/HighCostGetSubscriptionMaximum;899
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3748'
x-msedge-ref:
- - 'Ref A: B646AEA0EFF844E9B351AA9F4D8FC113 Ref B: TYO201100116047 Ref C: 2024-08-26T09:34:49Z'
+ - 'Ref A: 477C7FF6C80840F78EBAC9D5465EA3DD Ref B: SEL221051802027 Ref C: 2025-02-10T08:07:40Z'
status:
code: 200
message: ''
@@ -6155,12 +6620,7 @@ interactions:
{"id": "[concat(resourceId(''Microsoft.Network/loadBalancers'', ''vmss1LB''),
''/backendAddressPools/'', ''vmss1LBBEPool'')]"}, "protocol": "tcp", "frontendPort":
80, "backendPort": 80, "enableFloatingIP": false, "idleTimeoutInMinutes": 5}}]},
- "sku": {"name": "Standard"}}, {"type": "Microsoft.Network/networkSecurityGroups",
- "name": "vmss1NSG", "apiVersion": "2015-06-15", "location": "westus", "tags":
- {}, "dependsOn": [], "properties": {"securityRules": [{"name": "default-allow-ssh",
- "properties": {"protocol": "Tcp", "sourcePortRange": "*", "destinationPortRange":
- "22", "sourceAddressPrefix": "*", "destinationAddressPrefix": "*", "access":
- "Allow", "priority": 1000, "direction": "Inbound"}}]}}, {"type": "Microsoft.Network/loadBalancers/inboundNatRules",
+ "sku": {"name": "Standard"}}, {"type": "Microsoft.Network/loadBalancers/inboundNatRules",
"apiVersion": "2022-01-01", "name": "vmss1LB/NatRule", "location": "westus",
"properties": {"frontendIPConfiguration": {"id": "[concat(resourceId(''Microsoft.Network/loadBalancers'',
''vmss1LB''), ''/frontendIPConfigurations/'', ''loadBalancerFrontEnd'')]"},
@@ -6170,23 +6630,23 @@ interactions:
"tcp", "idleTimeoutInMinutes": 5}, "dependsOn": ["[concat(''Microsoft.Network/loadBalancers/'',
''vmss1LB'')]"]}, {"type": "Microsoft.Compute/virtualMachineScaleSets", "name":
"vmss1", "location": "westus", "tags": {}, "apiVersion": "2024-07-01", "dependsOn":
- ["Microsoft.Network/loadBalancers/vmss1LB", "Microsoft.Network/networkSecurityGroups/vmss1NSG"],
- "properties": {"upgradePolicy": {"mode": "manual"}, "singlePlacementGroup":
- null, "platformFaultDomainCount": 1, "proximityPlacementGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg"},
+ ["Microsoft.Network/loadBalancers/vmss1LB"], "properties": {"upgradePolicy":
+ {"mode": "manual"}, "singlePlacementGroup": null, "platformFaultDomainCount":
+ 1, "proximityPlacementGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg"},
"virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage",
"caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference":
{"publisher": "Debian", "offer": "debian-10", "sku": "10", "version": "latest"}},
"osProfile": {"computerNamePrefix": "vmss1", "adminUsername": "debian", "linuxConfiguration":
{"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/debian/.ssh/authorized_keys",
"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==
- aaa@foo.com\n"}]}}}, "networkProfile": {"networkInterfaceConfigurations":
- [{"name": "vmss1719aNic", "properties": {"ipConfigurations": [{"name": "vmss1719aIPConfig",
+ test@example.com\n"}]}}}, "networkProfile": {"networkInterfaceConfigurations":
+ [{"name": "vmss17cb9Nic", "properties": {"ipConfigurations": [{"name": "vmss17cb9IPConfig",
"properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
"loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}]}}],
- "networkSecurityGroup": {"id": "[resourceId(''Microsoft.Network/networkSecurityGroups'',
- ''vmss1NSG'')]"}, "primary": "true"}}], "networkApiVersion": "2020-11-01"}},
- "orchestrationMode": "Flexible"}, "sku": {"name": "Standard_DS1_v2", "capacity":
- 2}}], "outputs": {"VMSS": {"type": "object", "value": "[reference(resourceId(''Microsoft.Compute/virtualMachineScaleSets'',
+ "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1"},
+ "primary": "true"}}], "networkApiVersion": "2020-11-01"}}, "orchestrationMode":
+ "Flexible"}, "sku": {"name": "Standard_DS1_v2", "capacity": 2}}], "outputs":
+ {"VMSS": {"type": "object", "value": "[reference(resourceId(''Microsoft.Compute/virtualMachineScaleSets'',
''vmss1''),providers(''Microsoft.Compute'', ''virtualMachineScaleSets'').apiVersions[0])]"}}},
"parameters": {}, "mode": "incremental"}}'
headers:
@@ -6199,29 +6659,30 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '5399'
+ - '5000'
Content-Type:
- application/json
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --ppg --orchestration-mode
+ --nsg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/vmss_deploy_c7Bq4Z9oGHy6Z3vYDcJHmCzH6JbDLbSU","name":"vmss_deploy_c7Bq4Z9oGHy6Z3vYDcJHmCzH6JbDLbSU","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14965116385538790274","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-26T09:34:57.4291243Z","duration":"PT0.0006986S","correlationId":"1c9868f1-b9f1-4c6f-a953-4bd25b7b896a","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"loadBalancers/inboundNatRules","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"vmss1LB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/vmss1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmss1NSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/vmss_deploy_fj1NWpD2o15zIRHGelcQtxdw05N2F9bP","name":"vmss_deploy_fj1NWpD2o15zIRHGelcQtxdw05N2F9bP","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10806192993716103327","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-02-10T08:07:49.4521092Z","duration":"PT0.0006943S","correlationId":"ad368c3f-9a00-4921-8343-ecf93c4096ef","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]},{"resourceType":"loadBalancers/inboundNatRules","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"vmss1LB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/vmss_deploy_c7Bq4Z9oGHy6Z3vYDcJHmCzH6JbDLbSU/operationStatuses/08584769419900955291?api-version=2022-09-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/vmss_deploy_fj1NWpD2o15zIRHGelcQtxdw05N2F9bP/operationStatuses/08584624320196138034?api-version=2022-09-01&t=638747716737745489&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=e1_YusRguTCGjCUDlDAtKk41sjoFYpV38huwTLeG4uagbU3DcgbdbKN_DGbABLAGvgRHhQI9-jefH5kK9G2KtmV7JkG_3FGgAyhnqpwqi-5Md7K7McLsA_4sa8ROgWpjF9VUxp8hZpdW6yImhDePKZv-niwSbWEzxINV47qPgiPZq8lYqGygSwvxKo6y87G4gwzSvXHUfNkv-lQ0Ajq3RHrRzj8Z1lexdafc2_OqdYVABeF1bhbVKvrPChLTfiO5p-SV-_37Y5S6KVTu0sc8zCTLZGVg3r_Uuso6Os77QaAzzLj4pZ3-YuzlIFs6SCc5MvOgy9jVZMv-EMkEDsn0Hw&h=Bb_SHnqXSP2MVVTeOtuJwDCgw0JF0k18zm35ni_m2fE
cache-control:
- no-cache
content-length:
- - '2727'
+ - '2417'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:34:59 GMT
+ - Mon, 10 Feb 2025 08:07:53 GMT
expires:
- '-1'
pragma:
@@ -6233,13 +6694,13 @@ interactions:
x-content-type-options:
- nosniff
x-ms-deployment-engine-version:
- - 1.95.0
+ - 1.224.0
x-ms-ratelimit-remaining-subscription-global-writes:
- '2999'
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: E929413E837F485A82CFBD87363727FA Ref B: TYO201100114027 Ref C: 2024-08-26T09:34:50Z'
+ - 'Ref A: B3B88A91761C460AA7081722E08BC5C1 Ref B: SEL221051805033 Ref C: 2025-02-10T08:07:41Z'
status:
code: 201
message: Created
@@ -6256,22 +6717,23 @@ interactions:
- keep-alive
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --ppg --orchestration-mode
+ --nsg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769419900955291?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584624320196138034?api-version=2022-09-01&t=638747716737745489&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=e1_YusRguTCGjCUDlDAtKk41sjoFYpV38huwTLeG4uagbU3DcgbdbKN_DGbABLAGvgRHhQI9-jefH5kK9G2KtmV7JkG_3FGgAyhnqpwqi-5Md7K7McLsA_4sa8ROgWpjF9VUxp8hZpdW6yImhDePKZv-niwSbWEzxINV47qPgiPZq8lYqGygSwvxKo6y87G4gwzSvXHUfNkv-lQ0Ajq3RHrRzj8Z1lexdafc2_OqdYVABeF1bhbVKvrPChLTfiO5p-SV-_37Y5S6KVTu0sc8zCTLZGVg3r_Uuso6Os77QaAzzLj4pZ3-YuzlIFs6SCc5MvOgy9jVZMv-EMkEDsn0Hw&h=Bb_SHnqXSP2MVVTeOtuJwDCgw0JF0k18zm35ni_m2fE
response:
body:
- string: '{"status":"Running"}'
+ string: '{"status":"Accepted"}'
headers:
cache-control:
- no-cache
content-length:
- - '20'
+ - '21'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:35:00 GMT
+ - Mon, 10 Feb 2025 08:07:54 GMT
expires:
- '-1'
pragma:
@@ -6285,7 +6747,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: A6B99A31EEDB4019818DAC65A0BD541C Ref B: TYO201100114027 Ref C: 2024-08-26T09:34:59Z'
+ - 'Ref A: 61FF9E24B6BE42DF82D8D3B5D409DD5E Ref B: SEL221051805033 Ref C: 2025-02-10T08:07:53Z'
status:
code: 200
message: OK
@@ -6302,10 +6764,11 @@ interactions:
- keep-alive
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --ppg --orchestration-mode
+ --nsg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769419900955291?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584624320196138034?api-version=2022-09-01&t=638747716737745489&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=e1_YusRguTCGjCUDlDAtKk41sjoFYpV38huwTLeG4uagbU3DcgbdbKN_DGbABLAGvgRHhQI9-jefH5kK9G2KtmV7JkG_3FGgAyhnqpwqi-5Md7K7McLsA_4sa8ROgWpjF9VUxp8hZpdW6yImhDePKZv-niwSbWEzxINV47qPgiPZq8lYqGygSwvxKo6y87G4gwzSvXHUfNkv-lQ0Ajq3RHrRzj8Z1lexdafc2_OqdYVABeF1bhbVKvrPChLTfiO5p-SV-_37Y5S6KVTu0sc8zCTLZGVg3r_Uuso6Os77QaAzzLj4pZ3-YuzlIFs6SCc5MvOgy9jVZMv-EMkEDsn0Hw&h=Bb_SHnqXSP2MVVTeOtuJwDCgw0JF0k18zm35ni_m2fE
response:
body:
string: '{"status":"Running"}'
@@ -6317,7 +6780,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:35:31 GMT
+ - Mon, 10 Feb 2025 08:08:25 GMT
expires:
- '-1'
pragma:
@@ -6331,7 +6794,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: FC25DA283F3F41C4876E76DDD82FA9D8 Ref B: TYO201100114027 Ref C: 2024-08-26T09:35:31Z'
+ - 'Ref A: 446E5F722FA947D8B09D11C171295D02 Ref B: SEL221051805033 Ref C: 2025-02-10T08:08:25Z'
status:
code: 200
message: OK
@@ -6348,10 +6811,11 @@ interactions:
- keep-alive
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --ppg --orchestration-mode
+ --nsg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769419900955291?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584624320196138034?api-version=2022-09-01&t=638747716737745489&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=e1_YusRguTCGjCUDlDAtKk41sjoFYpV38huwTLeG4uagbU3DcgbdbKN_DGbABLAGvgRHhQI9-jefH5kK9G2KtmV7JkG_3FGgAyhnqpwqi-5Md7K7McLsA_4sa8ROgWpjF9VUxp8hZpdW6yImhDePKZv-niwSbWEzxINV47qPgiPZq8lYqGygSwvxKo6y87G4gwzSvXHUfNkv-lQ0Ajq3RHrRzj8Z1lexdafc2_OqdYVABeF1bhbVKvrPChLTfiO5p-SV-_37Y5S6KVTu0sc8zCTLZGVg3r_Uuso6Os77QaAzzLj4pZ3-YuzlIFs6SCc5MvOgy9jVZMv-EMkEDsn0Hw&h=Bb_SHnqXSP2MVVTeOtuJwDCgw0JF0k18zm35ni_m2fE
response:
body:
string: '{"status":"Succeeded"}'
@@ -6363,7 +6827,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:36:02 GMT
+ - Mon, 10 Feb 2025 08:08:56 GMT
expires:
- '-1'
pragma:
@@ -6377,7 +6841,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: F27E46D0FFE247C2B8F1835AF6B22337 Ref B: TYO201100114027 Ref C: 2024-08-26T09:36:02Z'
+ - 'Ref A: AEFB925055CF4960AFEA889734FA9B17 Ref B: SEL221051805033 Ref C: 2025-02-10T08:08:56Z'
status:
code: 200
message: OK
@@ -6394,24 +6858,25 @@ interactions:
- keep-alive
ParameterSetName:
- -g -n --image --admin-username --ssh-key-value --ppg --orchestration-mode
+ --nsg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/vmss_deploy_c7Bq4Z9oGHy6Z3vYDcJHmCzH6JbDLbSU","name":"vmss_deploy_c7Bq4Z9oGHy6Z3vYDcJHmCzH6JbDLbSU","type":"Microsoft.Resources/deployments","properties":{"templateHash":"14965116385538790274","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-26T09:35:46.7518062Z","duration":"PT49.3233805S","correlationId":"1c9868f1-b9f1-4c6f-a953-4bd25b7b896a","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"loadBalancers/inboundNatRules","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"vmss1LB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/vmss1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmss1NSG"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":false,"orchestrationMode":"Flexible","upgradePolicy":{"mode":"Manual"},"proximityPlacementGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_HYRWAQIUX6TMH74MJ3ZZSIMRFDNARVR3ZSQBACSTFENBR4PWRXPOVA/providers/Microsoft.Compute/proximityPlacementGroups/myppg"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss1","adminUsername":"debian","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/debian/.ssh/authorized_keys","keyData":"ssh-rsa
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/vmss_deploy_fj1NWpD2o15zIRHGelcQtxdw05N2F9bP","name":"vmss_deploy_fj1NWpD2o15zIRHGelcQtxdw05N2F9bP","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10806192993716103327","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-02-10T08:08:55.8082007Z","duration":"PT1M6.3567858S","correlationId":"ad368c3f-9a00-4921-8343-ecf93c4096ef","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]},{"resourceType":"loadBalancers/inboundNatRules","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/NatRule","resourceType":"Microsoft.Network/loadBalancers/inboundNatRules","resourceName":"vmss1LB/NatRule"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":false,"highSpeedInterconnectPlacement":"None","orchestrationMode":"Flexible","upgradePolicy":{"mode":"Manual"},"proximityPlacementGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_VICUY76HQBMGHPRG4WF5TZVCFHCA3RAZVWDOC3KE2ZSUJZOWYMLQXN/providers/Microsoft.Compute/proximityPlacementGroups/myppg"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss1","adminUsername":"debian","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/debian/.ssh/authorized_keys","keyData":"ssh-rsa
AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==
- aaa@foo.com\n"}]},"provisionVMAgent":true,"patchSettings":{"patchMode":"ImageDefault","assessmentMode":"ImageDefault"}},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"deleteOption":"Delete","diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-10","sku":"10","version":"latest"}},"networkProfile":{"networkApiVersion":"2020-11-01","networkInterfaceConfigurations":[{"name":"vmss1719aNic","properties":{"primary":true,"disableTcpStateTracking":false,"enableIPForwarding":false,"auxiliaryMode":"None","auxiliarySku":"None","deleteOption":"Delete","ipConfigurations":[{"name":"vmss1719aIPConfig","properties":{"privateIPAddressVersion":"IPv4","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"applicationSecurityGroups":[],"loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"applicationGatewayBackendAddressPools":[]}}],"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/vmss1NSG"},"dnsSettings":{"dnsServers":[]}}}]},"timeCreated":"2024-08-26T09:35:07.795819+00:00"},"provisioningState":"Succeeded","uniqueId":"af596716-f32d-44b9-b2eb-9b92ede5520f","platformFaultDomainCount":1,"constrainedMaximumCapacity":false,"timeCreated":"2024-08-26T09:35:07.795819+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/NatRule"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/vmss1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"}]}}'
+ test@example.com\n"}]},"provisionVMAgent":true,"patchSettings":{"patchMode":"ImageDefault","assessmentMode":"ImageDefault"}},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"deleteOption":"Delete","diskSizeGB":30},"imageReference":{"publisher":"Debian","offer":"debian-10","sku":"10","version":"latest"}},"networkProfile":{"networkApiVersion":"2020-11-01","networkInterfaceConfigurations":[{"name":"vmss17cb9Nic","properties":{"primary":true,"disableTcpStateTracking":false,"enableIPForwarding":false,"auxiliaryMode":"None","auxiliarySku":"None","deleteOption":"Delete","ipConfigurations":[{"name":"vmss17cb9IPConfig","properties":{"privateIPAddressVersion":"IPv4","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"applicationSecurityGroups":[],"loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"applicationGatewayBackendAddressPools":[]}}],"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1"},"dnsSettings":{"dnsServers":[]}}}]},"timeCreated":"2025-02-10T08:08:11.3938615+00:00"},"provisioningState":"Succeeded","uniqueId":"86956010-1789-4a44-b37f-bd25facdca82","platformFaultDomainCount":1,"constrainedMaximumCapacity":false,"timeCreated":"2025-02-10T08:08:11.3938615+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/NatRule"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"}]}}'
headers:
cache-control:
- no-cache
content-length:
- - '6692'
+ - '6258'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:36:03 GMT
+ - Mon, 10 Feb 2025 08:08:56 GMT
expires:
- '-1'
pragma:
@@ -6423,9 +6888,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3748'
x-msedge-ref:
- - 'Ref A: A97E7EF3964C47AEA2C31F7ACD500ADD Ref B: TYO201100114027 Ref C: 2024-08-26T09:36:03Z'
+ - 'Ref A: 4AA2761429E3447A9999D9605514CD8C Ref B: SEL221051805033 Ref C: 2025-02-10T08:08:57Z'
status:
code: 200
message: OK
@@ -6443,7 +6908,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2024-07-01
response:
@@ -6453,16 +6918,16 @@ interactions:
: \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\"\
,\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"etag\"\
: \"\\\"1\\\"\",\r\n \"properties\": {\r\n \"singlePlacementGroup\": false,\r\
- \n \"orchestrationMode\": \"Flexible\",\r\n \"upgradePolicy\": {\r\n\
- \ \"mode\": \"Manual\"\r\n },\r\n \"proximityPlacementGroup\":\
- \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_HYRWAQIUX6TMH74MJ3ZZSIMRFDNARVR3ZSQBACSTFENBR4PWRXPOVA/providers/Microsoft.Compute/proximityPlacementGroups/myppg\"\
+ \n \"highSpeedInterconnectPlacement\": \"None\",\r\n \"orchestrationMode\"\
+ : \"Flexible\",\r\n \"upgradePolicy\": {\r\n \"mode\": \"Manual\"\r\
+ \n },\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_VICUY76HQBMGHPRG4WF5TZVCFHCA3RAZVWDOC3KE2ZSUJZOWYMLQXN/providers/Microsoft.Compute/proximityPlacementGroups/myppg\"\
\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\
\n \"computerNamePrefix\": \"vmss1\",\r\n \"adminUsername\"\
: \"debian\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\"\
: true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n \
\ {\r\n \"path\": \"/home/debian/.ssh/authorized_keys\"\
,\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCbIg1guRHbI0lV11wWDt1r2cUdcNd27CJsg+SfgC7miZeubtwUhbsPdhMQsfDyhOWHq1+ZL0M+nJZV63d/1dhmhtgyOqejUwrPlzKhydsbrsdUor+JmNJDdW01v7BXHyuymT8G4s09jCasNOwiufbP/qp72ruu0bIA1nySsvlf9pCQAuFkAnVnf/rFhUlOkhtRpwcq8SUNY2zRHR/EKb/4NWY1JzR4sa3q2fWIJdrrX0DvLoa5g9bIEd4Df79ba7v+yiUBOS0zT2ll+z4g9izHK3EO5d8hL4jYxcjKs+wcslSYRWrascfscLgMlMGh0CdKeNTDjHpGPncaf3Z+FwwwjWeuiNBxv7bJo13/8B/098KlVDl4GZqsoBCEjPyJfV6hO0y/LkRGkk7oHWKgeWAfKtfLItRp00eZ4fcJNK9kCaSMmEugoZWcI7NGbZXzqFWqbpRI7NcDP9+WIQ+i9U5vqWsqd/zng4kbuAJ6UuKqIzB0upYrLShfQE3SAck8oaLhJqqq56VfDuASNpJKidV+zq27HfSBmbXnkR/5AK337dc3MXKJypoK/QPMLKUAP5XLPbs+NddJQV7EZXd29DLgp+fRIg3edpKdO7ZErWhv7d+3Kws+e1Y+ypmR2WIVSwVyBEUfgv2C8Ts9gnTF4pNcEY/S2aBicz5Ew2+jdyGNQQ==\
- \ aaa@foo.com\\n\"\r\n }\r\n ]\r\n },\r\
+ \ test@example.com\\n\"\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 },\r\n \"secrets\": [],\r\
@@ -6476,29 +6941,29 @@ interactions:
\ \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\"\
: \"10\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n\
\ \"networkProfile\": {\"networkApiVersion\":\"2020-11-01\",\"networkInterfaceConfigurations\"\
- :[{\"name\":\"vmss1719aNic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\
+ :[{\"name\":\"vmss17cb9Nic\",\"properties\":{\"primary\":true,\"disableTcpStateTracking\"\
:false,\"enableIPForwarding\":false,\"auxiliaryMode\":\"None\",\"auxiliarySku\"\
- :\"None\",\"deleteOption\":\"Delete\",\"ipConfigurations\":[{\"name\":\"vmss1719aIPConfig\"\
+ :\"None\",\"deleteOption\":\"Delete\",\"ipConfigurations\":[{\"name\":\"vmss17cb9IPConfig\"\
,\"properties\":{\"privateIPAddressVersion\":\"IPv4\",\"subnet\":{\"id\":\"\
/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\
},\"applicationSecurityGroups\":[],\"loadBalancerBackendAddressPools\":[{\"\
id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"\
}],\"applicationGatewayBackendAddressPools\":[]}}],\"networkSecurityGroup\"\
- :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/vmss1NSG\"\
- },\"dnsSettings\":{\"dnsServers\":[]}}}]},\r\n \"timeCreated\": \"2024-08-26T09:35:07.795819+00:00\"\
+ :{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Network/networkSecurityGroups/nsg1\"\
+ },\"dnsSettings\":{\"dnsServers\":[]}}}]},\r\n \"timeCreated\": \"2025-02-10T08:08:11.3938615+00:00\"\
\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\"\
- : \"af596716-f32d-44b9-b2eb-9b92ede5520f\",\r\n \"platformFaultDomainCount\"\
+ : \"86956010-1789-4a44-b37f-bd25facdca82\",\r\n \"platformFaultDomainCount\"\
: 1,\r\n \"constrainedMaximumCapacity\": false,\r\n \"timeCreated\"\
- : \"2024-08-26T09:35:07.795819+00:00\"\r\n }\r\n}"
+ : \"2025-02-10T08:08:11.3938615+00:00\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '4133'
+ - '4178'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:36:04 GMT
+ - Mon, 10 Feb 2025 08:08:58 GMT
etag:
- '"1"'
expires:
@@ -6511,12 +6976,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2392,Microsoft.Compute/GetVMScaleSetResource;32
+ - Microsoft.Compute/GetVMScaleSetSubscriptionMaximum;2396,Microsoft.Compute/GetVMScaleSetResource;32
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: F4CD074F86C34F7F88E7305398D0DD0A Ref B: TYO201151006052 Ref C: 2024-08-26T09:36:04Z'
+ - 'Ref A: FDF69BFA6B264D8EB197645034EF18D9 Ref B: SEL221051803011 Ref C: 2025-02-10T08:08:58Z'
status:
code: 200
message: ''
@@ -6534,21 +7001,21 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001","name":"cli_test_ppg_vm_vmss_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_with_related_resources","date":"2024-08-26T09:33:11Z","module":"vm","DateCreated":"2024-08-26T09:33:14Z","Creator":"aaa@foo.com"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001","name":"cli_test_ppg_vm_vmss_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_ppg_with_related_resources","date":"2025-02-10T08:05:26Z","module":"vm","Creator":"zhuyan@microsoft.com","DateCreated":"2025-02-10T08:05:33Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
content-length:
- - '463'
+ - '457'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:36:04 GMT
+ - Mon, 10 Feb 2025 08:08:59 GMT
expires:
- '-1'
pragma:
@@ -6562,7 +7029,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 7416214A568A4EE3B1FAE94B85CF4A48 Ref B: TYO201100114039 Ref C: 2024-08-26T09:36:05Z'
+ - 'Ref A: 56A22005A80B4152BDE53DB0E4F7BD14 Ref B: SEL221051801045 Ref C: 2025-02-10T08:08:59Z'
status:
code: 200
message: OK
@@ -6580,7 +7047,7 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute?api-version=2022-09-01
response:
@@ -6593,8 +7060,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualMachines","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -6603,8 +7070,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -6613,20 +7080,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"virtualMachines/extensions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
@@ -6636,8 +7103,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualMachineScaleSets","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -6646,8 +7113,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -6656,20 +7123,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags,
SupportsLocation"},{"resourceType":"virtualMachineScaleSets/extensions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
@@ -6679,8 +7146,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2015-06-15","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2015-06-15","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6688,8 +7155,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/extensions","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/extensions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6697,8 +7164,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/networkInterfaces","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6706,8 +7173,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/virtualMachines/networkInterfaces","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6715,8 +7182,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"virtualMachineScaleSets/publicIPAddresses","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6724,8 +7191,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations/operations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6733,8 +7200,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/vmSizes","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-10-30-preview","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/vmSizes","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6742,8 +7209,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/runCommands","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/runCommands","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6751,8 +7218,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachines","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachines","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6760,8 +7227,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachineScaleSets","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/virtualMachineScaleSets","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6769,8 +7236,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/publishers","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/publishers","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6778,8 +7245,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"operations","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"operations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6787,8 +7254,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"None"},{"resourceType":"virtualMachines/runCommands","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-03-30","2015-06-15","2015-05-01-preview"],"capabilities":"None"},{"resourceType":"virtualMachines/runCommands","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6796,8 +7263,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2022-03-01","capabilities":"CrossResourceGroupResourceMove,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2023-09-01","capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualMachineScaleSets/applications","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -6806,8 +7273,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"virtualMachines/VMApplications","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"virtualMachines/VMApplications","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6815,9 +7282,9 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2022-03-01","capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"locations/edgeZones","locations":[],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/vmimages","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2023-09-01","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"locations/edgeZones","locations":[],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/vmimages","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6825,8 +7292,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/publishers","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"locations/edgeZones/publishers","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6834,8 +7301,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"restorePointCollections","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01"],"capabilities":"None"},{"resourceType":"restorePointCollections","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -6843,8 +7310,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"defaultApiVersion":"2022-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"defaultApiVersion":"2023-09-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"restorePointCollections/restorePoints","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -6853,8 +7320,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"capabilities":"None"},{"resourceType":"proximityPlacementGroups","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30"],"capabilities":"None"},{"resourceType":"proximityPlacementGroups","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6862,8 +7329,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":[]},{"location":"East
@@ -6872,14 +7339,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"sshPublicKeys","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -6888,8 +7356,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2022-03-01","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01"],"defaultApiVersion":"2023-09-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"capacityReservationGroups","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
@@ -6898,8 +7366,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -6908,15 +7376,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"capacityReservationGroups/capacityReservations","locations":["East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"capacityReservationGroups/capacityReservations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6924,8 +7392,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -6934,15 +7402,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"virtualMachines/metricDefinitions","locations":["East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"virtualMachines/metricDefinitions","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6950,8 +7418,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","West US 3","Jio India West","Sweden Central","Qatar Central","Israel
- Central","Poland Central","Italy North","Mexico Central","Spain Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2014-04-01"],"capabilities":"None"},{"resourceType":"locations/spotEvictionRates","locations":["East
+ Central","Poland Central","Italy North","Mexico Central","Spain Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2014-04-01"],"capabilities":"None"},{"resourceType":"locations/spotEvictionRates","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6959,8 +7427,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"locations/spotPriceHistory","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"locations/spotPriceHistory","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6968,8 +7436,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"locations/recommendations","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"locations/recommendations","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6977,8 +7445,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2022-03-01","capabilities":"None"},{"resourceType":"locations/sharedGalleries","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01"],"defaultApiVersion":"2023-09-01","capabilities":"None"},{"resourceType":"locations/sharedGalleries","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6986,8 +7454,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/communityGalleries","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"locations/communityGalleries","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -6995,8 +7463,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"sharedVMImages","locations":["West
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-03","2024-03-01","2023-09-01","2023-07-03","2023-07-01","2023-03-01","2022-11-01","2022-08-03","2022-08-01","2022-03-03","2022-03-01","2022-01-03","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-09-30","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"sharedVMImages","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
@@ -7024,8 +7492,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01","2017-10-15-preview"],"capabilities":"None"},{"resourceType":"galleries","locations":["West
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01","2017-10-15-preview"],"capabilities":"None"},{"resourceType":"galleries","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
West","West India","East Asia","Australia East","Japan East","Korea South","West
@@ -7033,8 +7501,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2023-07-03","capabilities":"SystemAssignedResourceIdentity,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2023-07-03","capabilities":"SystemAssignedResourceIdentity,
SupportsTags, SupportsLocation"},{"resourceType":"galleries/images","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -7043,8 +7511,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"galleries/images/versions","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -7053,8 +7521,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"locations/galleries","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -7063,8 +7531,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"None"},{"resourceType":"payloadGroups","locations":["South
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01","2018-06-01"],"defaultApiVersion":"2022-03-03","capabilities":"None"},{"resourceType":"payloadGroups","locations":["South
Central US","West Europe"],"apiVersions":["2024-03-03","2023-07-03"],"capabilities":"None"},{"resourceType":"galleries/applications","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -7073,8 +7541,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"galleries/applications/versions","locations":["West
Central US","South Central US","East US 2","Southeast Asia","West Europe","West
US","East US","Canada Central","North Europe","North Central US","Brazil South","UK
@@ -7083,8 +7551,8 @@ interactions:
West","Korea Central","France Central","Central US","Australia Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01","2019-07-01","2019-03-01"],"defaultApiVersion":"2022-03-03","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"disks","locations":["Southeast Asia","East
US 2","Central US","West Europe","East US","North Central US","South Central
US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -7093,8 +7561,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -7103,20 +7571,20 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"snapshots","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -7125,14 +7593,14 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/diskoperations","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -7141,8 +7609,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"diskEncryptionSets","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"diskEncryptionSets","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -7150,8 +7618,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01"],"defaultApiVersion":"2022-03-02","capabilities":"SystemAssignedResourceIdentity,
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01"],"defaultApiVersion":"2022-03-02","capabilities":"SystemAssignedResourceIdentity,
SupportsTags, SupportsLocation"},{"resourceType":"diskAccesses","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -7160,14 +7628,14 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01"],"defaultApiVersion":"2022-03-02","locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01"],"defaultApiVersion":"2022-03-02","locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"SupportsTags,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"restorePointCollections/restorePoints/diskRestorePoints","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -7176,8 +7644,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30"],"defaultApiVersion":"2022-03-02","capabilities":"None"},{"resourceType":"virtualMachineScaleSets/disks","locations":["East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30"],"defaultApiVersion":"2022-03-02","capabilities":"None"},{"resourceType":"virtualMachineScaleSets/disks","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -7185,8 +7653,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"cloudServices","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-03-02","2023-10-02","2023-04-02","2023-01-02","2022-07-02","2022-03-02","2021-12-01","2021-08-01","2021-04-01","2020-12-01","2020-09-30","2020-06-30","2020-05-01","2019-11-01","2019-07-01","2019-03-01","2018-09-30","2018-06-01","2018-04-01","2017-03-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-02","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"capabilities":"None"},{"resourceType":"cloudServices","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -7194,8 +7662,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -7204,14 +7672,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"cloudServices/roles","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
@@ -7220,8 +7689,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/roleInstances","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/roleInstances","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -7229,8 +7698,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/csoperations","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/csoperations","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -7238,8 +7707,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/cloudServiceOsVersions","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/cloudServiceOsVersions","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -7247,8 +7716,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/cloudServiceOsFamilies","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"locations/cloudServiceOsFamilies","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -7256,8 +7725,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/networkInterfaces","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2022-09-04","2022-04-04","2021-03-01"],"defaultApiVersion":"2021-03-01","capabilities":"None"},{"resourceType":"cloudServices/networkInterfaces","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -7265,8 +7734,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/roleInstances/networkInterfaces","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/roleInstances/networkInterfaces","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -7274,8 +7743,8 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/publicIPAddresses","locations":["Southeast
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"cloudServices/publicIPAddresses","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -7283,17 +7752,18 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["East
- US","East US 2","West US","Central US","North Central US","South Central US","West
- Europe","Southeast Asia","Japan East","Japan West","Australia East","Australia
- Southeast","Australia Central","Brazil South","South India","Central India","West
- India","Canada Central","Canada East","West US 2","UK West","Korea Central","Korea
- South","France Central","South Africa North","UAE North","Switzerland North","Germany
- West Central","Norway East","Jio India West","West US 3","Sweden Central","Qatar
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2021-03-01","2020-10-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["East
+ US","West US","Central US","North Central US","South Central US","Southeast
+ Asia","Japan East","Japan West","Australia East","Australia Southeast","Australia
+ Central","Brazil South","South India","Central India","West India","Canada
+ Central","Canada East","West US 2","UK West","Korea Central","Korea South","France
+ Central","South Africa North","UAE North","Switzerland North","Germany West
+ Central","Norway East","Jio India West","West US 3","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Spain Central","Mexico
- Central","West Central US","North Europe","UK South","East Asia","East US
- 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"images","locations":["Southeast
+ Central","New Zealand North","West Central US","East US 2","West Europe","North
+ Europe","UK South","East Asia","East US 2 EUAP","Central US EUAP","East US
+ STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview","2016-03-30","2015-06-15","2015-05-01-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-03-30"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2017-12-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-12-01"},{"profileVersion":"2020-09-01-hybrid","apiVersion":"2020-06-01"}],"capabilities":"None"},{"resourceType":"images","locations":["Southeast
Asia","East US 2","Central US","West Europe","East US","North Central US","South
Central US","West US","North Europe","East Asia","Brazil South","West US 2","West
Central US","UK West","UK South","Japan East","Japan West","Canada Central","Canada
@@ -7301,51 +7771,59 @@ interactions:
Central","Korea South","West India","France Central","South Africa North","UAE
North","Australia Central","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"],"defaultApiVersion":"2022-03-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"locationMappings":[{"location":"East
- US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftrrdclab3","microsoftrrdclab4","microsoftdclabs1","microsoftrrezm1"]},{"location":"West
- US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","losangeles"]},{"location":"East
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01","2017-03-30","2016-08-30","2016-04-30-preview"],"defaultApiVersion":"2023-09-01","apiProfiles":[{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-30"},{"profileVersion":"2018-06-01-profile","apiVersion":"2018-04-01"}],"locationMappings":[{"location":"East
+ US 2 EUAP","type":"EdgeZone","extendedLocations":["microsoftdclabs1","microsoftrrezm1"]},{"location":"East
US","type":"EdgeZone","extendedLocations":["microsoftnewyork1"]},{"location":"Australia
- Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South
- Central US","type":"EdgeZone","extendedLocations":["attdallas1"]},{"location":"West
- US 2","type":"EdgeZone","extendedLocations":["portland"]}],"capabilities":"CrossResourceGroupResourceMove,
+ Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["losangeles"]},{"location":"West
+ US 2","type":"EdgeZone","extendedLocations":["portland"]},{"location":"Australia
+ East","type":"EdgeZone","extendedLocations":["perth"]}],"capabilities":"CrossResourceGroupResourceMove,
CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/diagnostics","locations":["West
Central US","Southeast Asia","East US 2","East US","South Central US","West
Europe","North Europe","West US 2","UK South","Australia East","South India","Central
India","West India","Korea Central","Korea South","Jio India West","Japan
- West","Japan East","East Asia","Canada Central","Canada East","South Africa
- North","Central US","West US 3","West US","UK West","France Central","UAE
- North","Australia Central","Australia Southeast","Switzerland North","Germany
- West Central","Norway East","North Central US","Brazil South","Italy North","Israel
- Central","Spain Central","Qatar Central","Poland Central","Mexico Central","Sweden
- Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/diagnosticOperations","locations":["West
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/diagnosticOperations","locations":["West
Central US","Southeast Asia","East US 2","East US","South Central US","West
Europe","North Europe","West US 2","UK South","Australia East","South India","Central
India","West India","Korea Central","Korea South","Jio India West","Japan
- West","Japan East","East Asia","Canada Central","Canada East","South Africa
- North","Central US","West US 3","West US","UK West","France Central","UAE
- North","Australia Central","Australia Southeast","Switzerland North","Germany
- West Central","Norway East","North Central US","Brazil South","Italy North","Israel
- Central","Spain Central","Qatar Central","Poland Central","Mexico Central","Sweden
- Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/placementScores","locations":["West
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/placementScores","locations":["West
Central US","Southeast Asia","East US 2","East US","South Central US","West
Europe","North Europe","West US 2","UK South","Australia East","South India","Central
India","West India","Korea Central","Korea South","Jio India West","Japan
- West","Japan East","East Asia","Canada Central","Canada East","South Africa
- North","Central US","West US 3","West US","UK West","France Central","UAE
- North","Australia Central","Australia Southeast","Switzerland North","Germany
- West Central","Norway East","North Central US","Brazil South","Italy North","Israel
- Central","Spain Central","Qatar Central","Poland Central","Mexico Central","Sweden
- Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/placementRecommendations","locations":["West
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/placementRecommendations","locations":["West
Central US","Southeast Asia","East US 2","East US","South Central US","West
Europe","North Europe","West US 2","UK South","Australia East","South India","Central
India","West India","Korea Central","Korea South","Jio India West","Japan
- West","Japan East","East Asia","Canada Central","Canada East","South Africa
- North","Central US","West US 3","West US","UK West","France Central","UAE
- North","Australia Central","Australia Southeast","Switzerland North","Germany
- West Central","Norway East","North Central US","Brazil South","Italy North","Israel
- Central","Spain Central","Qatar Central","Poland Central","Mexico Central","Sweden
- Central","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/logAnalytics","locations":["East
+ West","Japan East","East Asia","Jio India Central","Canada Central","Canada
+ East","South Africa North","South Africa West","Central US","West US 3","West
+ US","UK West","France Central","UAE North","UAE Central","Israel Central","Spain
+ Central","Qatar Central","France South","Australia Central","Australia Southeast","Australia
+ Central 2","New Zealand North","Switzerland North","Germany West Central","Norway
+ East","Switzerland West","Germany North","Norway West","Italy North","Poland
+ Central","Sweden Central","North Central US","Brazil South","Mexico Central","Brazil
+ Southeast","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-06-01-preview","2024-03-01-preview","2021-06-01-preview"],"defaultApiVersion":"2024-06-01-preview","capabilities":"None"},{"resourceType":"locations/logAnalytics","locations":["East
US","East US 2","West US","Central US","North Central US","South Central US","North
Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Australia
East","Australia Southeast","Australia Central","Brazil South","South India","Central
@@ -7353,8 +7831,8 @@ interactions:
US","UK South","UK West","Korea Central","Korea South","France Central","South
Africa North","UAE North","Switzerland North","Germany West Central","Norway
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01"],"capabilities":"None"},{"resourceType":"hostGroups","locations":["Central
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US STG","East US 2 EUAP","Central US EUAP"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01","2018-06-01","2018-04-01","2017-12-01"],"capabilities":"None"},{"resourceType":"hostGroups","locations":["Central
US","East US 2","West Europe","Southeast Asia","France Central","North Europe","West
US 2","East US","UK South","Japan East","Japan West","East Asia","North Central
US","South Central US","Canada East","Korea Central","Brazil South","UK West","Canada
@@ -7362,8 +7840,8 @@ interactions:
Southeast","Korea South","West India","South Africa North","UAE North","Australia
Central","Switzerland North","Germany West Central","Norway East","Australia
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -7372,15 +7850,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"hostGroups/hosts","locations":["Central
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"hostGroups/hosts","locations":["Central
US","East US 2","West Europe","Southeast Asia","France Central","North Europe","West
US 2","East US","UK South","Japan East","Japan West","East Asia","North Central
US","South Central US","Canada East","Korea Central","Brazil South","UK West","Canada
@@ -7388,8 +7866,8 @@ interactions:
Southeast","Korea South","West India","South Africa North","UAE North","Australia
Central","Switzerland North","Germany West Central","Norway East","Australia
East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
- Central","Italy North","Israel Central","Spain Central","Mexico Central","East
- US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2022-03-01","zoneMappings":[{"location":"Australia
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-11-01","2024-07-01","2024-03-01","2023-09-01","2023-07-01","2023-03-01","2022-11-01","2022-08-01","2022-03-01","2021-11-01","2021-07-01","2021-04-01","2021-03-01","2020-12-01","2020-06-01","2019-12-01","2019-07-01","2019-03-01","2018-10-01"],"defaultApiVersion":"2023-09-01","zoneMappings":[{"location":"Australia
East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada
Central","zones":["2","3","1"]},{"location":"Central India","zones":["2","3","1"]},{"location":"Central
US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East
@@ -7398,15 +7876,15 @@ interactions:
Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Israel
Central","zones":["2","3","1"]},{"location":"Italy North","zones":["2","3","1"]},{"location":"Japan
East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"Mexico
- Central","zones":["2","3","1"]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway
- East","zones":["2","3","1"]},{"location":"Poland Central","zones":["2","3","1"]},{"location":"Qatar
- Central","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South
- Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Spain
- Central","zones":["2","3","1"]},{"location":"Sweden Central","zones":["2","3","1"]},{"location":"Switzerland
- North","zones":["2","3","1"]},{"location":"UAE North","zones":["2","3","1"]},{"location":"UK
- South","zones":["2","3","1"]},{"location":"West Europe","zones":["2","3","1"]},{"location":"West
- US 2","zones":["2","3","1"]},{"location":"West US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags,
- SupportsLocation"},{"resourceType":"sharedVMExtensions","locations":["East
+ Central","zones":["2","3","1"]},{"location":"New Zealand North","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"Norway East","zones":["2","3","1"]},{"location":"Poland
+ Central","zones":["2","3","1"]},{"location":"Qatar Central","zones":["2","3","1"]},{"location":"South
+ Africa North","zones":["2","3","1"]},{"location":"South Central US","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"Spain Central","zones":["2","3","1"]},{"location":"Sweden
+ Central","zones":["2","3","1"]},{"location":"Switzerland North","zones":["2","3","1"]},{"location":"UAE
+ North","zones":["2","3","1"]},{"location":"UK South","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West
+ US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"sharedVMExtensions","locations":["East
US 2 EUAP","Central US EUAP","East US STG","Southeast Asia","East US 2","Central
US","West Europe","East US","North Central US","South Central US","West US","North
Europe","East Asia","Brazil South","West US 2","West Central US","UK West","UK
@@ -7415,7 +7893,7 @@ interactions:
India","France Central","South Africa North","UAE North","Australia Central","Switzerland
North","Germany West Central","Norway East","Jio India West","West US 3","Sweden
Central","Qatar Central","Poland Central","Italy North","Israel Central","Spain
- Central","Mexico Central"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
+ Central","Mexico Central","New Zealand North"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
SupportsLocation"},{"resourceType":"sharedVMExtensions/versions","locations":["East
US 2 EUAP","Central US EUAP","East US STG","Southeast Asia","East US 2","Central
US","West Europe","East US","North Central US","South Central US","West US","North
@@ -7425,17 +7903,39 @@ interactions:
India","France Central","South Africa North","UAE North","Australia Central","Switzerland
North","Germany West Central","Norway East","Jio India West","West US 3","Sweden
Central","Qatar Central","Poland Central","Italy North","Israel Central","Spain
- Central","Mexico Central"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
+ Central","Mexico Central","New Zealand North"],"apiVersions":["2024-03-03","2023-07-03","2022-08-03","2022-03-03","2022-01-03","2021-10-01","2021-07-01","2021-03-01","2020-09-30","2019-12-01"],"defaultApiVersion":"2019-12-01","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"galleries/inVMAccessControlProfiles","locations":["East
+ US 2 EUAP","Central US EUAP","East US STG","West Central US","South Central
+ US","East US 2","Southeast Asia","West Europe","West US","East US","Canada
+ Central","North Europe","North Central US","Brazil South","UK West","West
+ India","East Asia","Australia East","Japan East","Korea South","West US 2","Canada
+ East","UK South","Central India","South India","Australia Southeast","Japan
+ West","Korea Central","France Central","Central US","Australia Central","South
+ Africa North","UAE North","Switzerland North","Germany West Central","Norway
+ East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North"],"apiVersions":["2024-03-03"],"defaultApiVersion":"2024-03-03","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"galleries/inVMAccessControlProfiles/versions","locations":["East
+ US 2 EUAP","Central US EUAP","East US STG","West Central US","South Central
+ US","East US 2","Southeast Asia","West Europe","West US","East US","Canada
+ Central","North Europe","North Central US","Brazil South","UK West","West
+ India","East Asia","Australia East","Japan East","Korea South","West US 2","Canada
+ East","UK South","Central India","South India","Australia Southeast","Japan
+ West","Korea Central","France Central","Central US","Australia Central","South
+ Africa North","UAE North","Switzerland North","Germany West Central","Norway
+ East","Jio India West","West US 3","Sweden Central","Qatar Central","Poland
+ Central","Italy North","Israel Central","Spain Central","Mexico Central","New
+ Zealand North"],"apiVersions":["2024-03-03"],"defaultApiVersion":"2024-03-03","capabilities":"SupportsTags,
SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '101068'
+ - '105469'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:36:05 GMT
+ - Mon, 10 Feb 2025 08:08:59 GMT
expires:
- '-1'
pragma:
@@ -7449,7 +7949,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 6A6FF26604244768B0E4FF2603B3A476 Ref B: TYO201151001036 Ref C: 2024-08-26T09:36:05Z'
+ - 'Ref A: 275F7FBBA3534B9D9C65A2A64D0E1801 Ref B: SEL221051805009 Ref C: 2025-02-10T08:08:59Z'
status:
code: 200
message: OK
@@ -7467,30 +7967,30 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg?api-version=2024-07-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg?api-version=2024-11-01
response:
body:
string: "{\r\n \"name\": \"myppg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\",\r\n \"virtualMachines\": [\r\n {\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_HYRWAQIUX6TMH74MJ3ZZSIMRFDNARVR3ZSQBACSTFENBR4PWRXPOVA/providers/Microsoft.Compute/virtualMachines/VM1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_HYRWAQIUX6TMH74MJ3ZZSIMRFDNARVR3ZSQBACSTFENBR4PWRXPOVA/providers/Microsoft.Compute/virtualMachines/VMSS1_42DFA471\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_HYRWAQIUX6TMH74MJ3ZZSIMRFDNARVR3ZSQBACSTFENBR4PWRXPOVA/providers/Microsoft.Compute/virtualMachines/VMSS1_88055883\"\
+ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_VICUY76HQBMGHPRG4WF5TZVCFHCA3RAZVWDOC3KE2ZSUJZOWYMLQXN/providers/Microsoft.Compute/virtualMachines/VM1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_VICUY76HQBMGHPRG4WF5TZVCFHCA3RAZVWDOC3KE2ZSUJZOWYMLQXN/providers/Microsoft.Compute/virtualMachines/VMSS1_4AC38EA4\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_VICUY76HQBMGHPRG4WF5TZVCFHCA3RAZVWDOC3KE2ZSUJZOWYMLQXN/providers/Microsoft.Compute/virtualMachines/VMSS1_ACD8B279\"\
\r\n }\r\n ],\r\n \"virtualMachineScaleSets\": [\r\n {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_HYRWAQIUX6TMH74MJ3ZZSIMRFDNARVR3ZSQBACSTFENBR4PWRXPOVA/providers/Microsoft.Compute/virtualMachineScaleSets/VMSS1\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_VICUY76HQBMGHPRG4WF5TZVCFHCA3RAZVWDOC3KE2ZSUJZOWYMLQXN/providers/Microsoft.Compute/virtualMachineScaleSets/VMSS1\"\
\r\n }\r\n ],\r\n \"availabilitySets\": []\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1401'
+ - '1386'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:36:07 GMT
+ - Mon, 10 Feb 2025 08:09:01 GMT
expires:
- '-1'
pragma:
@@ -7501,12 +8001,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/HighCostGetSubscriptionMaximum;899
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 2E860BBC2D2243F694F0026FA36B06BD Ref B: TYO201100115017 Ref C: 2024-08-26T09:36:07Z'
+ - 'Ref A: BB7CB9F43B734892807129FABEC16928 Ref B: SEL221051504039 Ref C: 2025-02-10T08:09:00Z'
status:
code: 200
message: ''
@@ -7533,15 +8035,15 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/av_set_deploy_p3VrMVCpg2TkjvnF4bzwf9oQyXrcplWM","name":"av_set_deploy_p3VrMVCpg2TkjvnF4bzwf9oQyXrcplWM","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16140983275783493177","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-26T09:36:10.6010623Z","duration":"PT0.0003492S","correlationId":"1dceecda-2574-4329-9477-33f0b5236a26","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]}]}],"dependencies":[]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/av_set_deploy_dElkWlsYwUpWvEKyoA71fVP77cHAwJDj","name":"av_set_deploy_dElkWlsYwUpWvEKyoA71fVP77cHAwJDj","type":"Microsoft.Resources/deployments","properties":{"templateHash":"13092312835441515437","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-02-10T08:09:08.2477593Z","duration":"PT0.0003123S","correlationId":"189bc0ef-0cf9-4dce-9717-7f999debe7f7","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]}]}],"dependencies":[]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/av_set_deploy_p3VrMVCpg2TkjvnF4bzwf9oQyXrcplWM/operationStatuses/08584769419162648671?api-version=2022-09-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/av_set_deploy_dElkWlsYwUpWvEKyoA71fVP77cHAwJDj/operationStatuses/08584624319416858976?api-version=2022-09-01&t=638747717498547922&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=NrRzO_fv766dZ9VhSn-X7M1SVdQY-bonsBoTEsEaFIsbmKh9mYtm29Lt6sLlRbMfwUs9MqcbLSc0dCar84JZLroqsbsfhH_ezR9lpPmWM3oyK7aAEwFbq-IehRS5hWuWKGiXWrbv7IKuDEMuGkg4vb1v9IFA8vH4SlkU0gGiQIbAkwKGJsnCgYMfE7UoY2kvmCO9NX14DwPkdQ1_fT6g7m5GhYulWdk-sBbwjrDibMbsLud89rC3l2Xb33A74wwUAUQQdmz1m3jeNeIK6nF1qE0pNScUsTUj5YOigF-bcrqD5QtEsbC6vEi61LD-1XP_pyqbB2GWeqxo1O6yduNxAw&h=X62aJDSuFJ2GN3hXRvHWTgtwrTi8WUVCq-Nr-EOCTEM
cache-control:
- no-cache
content-length:
@@ -7549,7 +8051,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:36:11 GMT
+ - Mon, 10 Feb 2025 08:09:09 GMT
expires:
- '-1'
pragma:
@@ -7561,13 +8063,13 @@ interactions:
x-content-type-options:
- nosniff
x-ms-deployment-engine-version:
- - 1.95.0
+ - 1.224.0
x-ms-ratelimit-remaining-subscription-global-writes:
- '2999'
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: 727E87A295704D68BE6FB9D8D987E8E6 Ref B: TYO201100115017 Ref C: 2024-08-26T09:36:07Z'
+ - 'Ref A: E4B3BA2776B546C59F02A584B7414370 Ref B: SEL221051802031 Ref C: 2025-02-10T08:09:01Z'
status:
code: 201
message: Created
@@ -7585,9 +8087,9 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769419162648671?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584624319416858976?api-version=2022-09-01&t=638747717498547922&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=NrRzO_fv766dZ9VhSn-X7M1SVdQY-bonsBoTEsEaFIsbmKh9mYtm29Lt6sLlRbMfwUs9MqcbLSc0dCar84JZLroqsbsfhH_ezR9lpPmWM3oyK7aAEwFbq-IehRS5hWuWKGiXWrbv7IKuDEMuGkg4vb1v9IFA8vH4SlkU0gGiQIbAkwKGJsnCgYMfE7UoY2kvmCO9NX14DwPkdQ1_fT6g7m5GhYulWdk-sBbwjrDibMbsLud89rC3l2Xb33A74wwUAUQQdmz1m3jeNeIK6nF1qE0pNScUsTUj5YOigF-bcrqD5QtEsbC6vEi61LD-1XP_pyqbB2GWeqxo1O6yduNxAw&h=X62aJDSuFJ2GN3hXRvHWTgtwrTi8WUVCq-Nr-EOCTEM
response:
body:
string: '{"status":"Accepted"}'
@@ -7599,7 +8101,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:36:11 GMT
+ - Mon, 10 Feb 2025 08:09:09 GMT
expires:
- '-1'
pragma:
@@ -7613,7 +8115,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: E6A6AB7432164C399142BC133545843C Ref B: TYO201100115017 Ref C: 2024-08-26T09:36:11Z'
+ - 'Ref A: 1173F05047DC4A4892758462C1C22107 Ref B: SEL221051802031 Ref C: 2025-02-10T08:09:09Z'
status:
code: 200
message: OK
@@ -7631,9 +8133,9 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769419162648671?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584624319416858976?api-version=2022-09-01&t=638747717498547922&c=MIIHhzCCBm-gAwIBAgITHgYzPCNynNboIzpbwQAABjM8IzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjUwMTI1MTAzNDA0WhcNMjUwNzI0MTAzNDA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALKPotTDpgftA7CXtms9mFH23-tex305ckUWa8g24d-q8qk3N41lUUFI8eLSiae0-8bxgZy3xUxN9DZ4Y2pytI2w8vg4BkuXA6ovobs_lmZ_dRlh9xBzhoF17E6C3ChUl-CwBjrD4xfnNkoDLAESVqYcWf2xpEa-XyUd0NbJYcoFK3uZOuZKMn12vJMMsGNQRGwLlqw2UmwYfaAa4hMOulAjmoNpSEKPxr0cW9kMYp4u4jjhnEMtP2Kbk-RmeUUB9zhAhCLrMErH4j5COGO5ei9n-HNH-GcaKVAh3VShgIXrGQt3hVMzAe11zSBhPEBapj0krOaojng3S6zpcv7IBnkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBRONXh1wQKxnd0880VHxcMzUrnn8zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFAzp-TBnf33pZ5yOYcvtc080nAQcA9QXetcPNWPio7-d1617_hgfvXdqsT_QPZsJuOXxevQNclEa6qwS0LjsWivtqonE-FuG-EqSnhmWNrtZbMR1RFXc6ziLAKMab0YsLO9QvsUQ3zmVOw_CUzXkmmdbU-3-ri2HQYiBA_UqPwM_P4RYYv0gbHNHpzP2lUPvEvfDKi0sMMyu5hXA_WsY02ItU_Cz09BUYvyUZiGIlLD7oejSneFfjVZtLot-ma6F3nVMvw5KGUF1Rh3npMcEKmPg7c6JsdjokoN3m0uhJz1zNBjrPfLVUGWrQ3gPrAusvW4qLr6LPee3o43x0NbjNc&s=NrRzO_fv766dZ9VhSn-X7M1SVdQY-bonsBoTEsEaFIsbmKh9mYtm29Lt6sLlRbMfwUs9MqcbLSc0dCar84JZLroqsbsfhH_ezR9lpPmWM3oyK7aAEwFbq-IehRS5hWuWKGiXWrbv7IKuDEMuGkg4vb1v9IFA8vH4SlkU0gGiQIbAkwKGJsnCgYMfE7UoY2kvmCO9NX14DwPkdQ1_fT6g7m5GhYulWdk-sBbwjrDibMbsLud89rC3l2Xb33A74wwUAUQQdmz1m3jeNeIK6nF1qE0pNScUsTUj5YOigF-bcrqD5QtEsbC6vEi61LD-1XP_pyqbB2GWeqxo1O6yduNxAw&h=X62aJDSuFJ2GN3hXRvHWTgtwrTi8WUVCq-Nr-EOCTEM
response:
body:
string: '{"status":"Succeeded"}'
@@ -7645,7 +8147,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:36:42 GMT
+ - Mon, 10 Feb 2025 08:09:40 GMT
expires:
- '-1'
pragma:
@@ -7657,9 +8159,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3748'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 611882DC69954CEFA83C5D14120AD77E Ref B: TYO201100115017 Ref C: 2024-08-26T09:36:42Z'
+ - 'Ref A: 8C05D22ED81E45C08502ED8A47B141DA Ref B: SEL221051802031 Ref C: 2025-02-10T08:09:40Z'
status:
code: 200
message: OK
@@ -7677,12 +8179,12 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/av_set_deploy_p3VrMVCpg2TkjvnF4bzwf9oQyXrcplWM","name":"av_set_deploy_p3VrMVCpg2TkjvnF4bzwf9oQyXrcplWM","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16140983275783493177","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-26T09:36:16.5399514Z","duration":"PT5.9392383S","correlationId":"1dceecda-2574-4329-9477-33f0b5236a26","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]}]}],"dependencies":[],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/availabilitySets/avset1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Resources/deployments/av_set_deploy_dElkWlsYwUpWvEKyoA71fVP77cHAwJDj","name":"av_set_deploy_dElkWlsYwUpWvEKyoA71fVP77cHAwJDj","type":"Microsoft.Resources/deployments","properties":{"templateHash":"13092312835441515437","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-02-10T08:09:12.8591823Z","duration":"PT4.6117353S","correlationId":"189bc0ef-0cf9-4dce-9717-7f999debe7f7","providers":[{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"availabilitySets","locations":["westus"]}]}],"dependencies":[],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/availabilitySets/avset1"}]}}'
headers:
cache-control:
- no-cache
@@ -7691,7 +8193,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:36:43 GMT
+ - Mon, 10 Feb 2025 08:09:41 GMT
expires:
- '-1'
pragma:
@@ -7705,7 +8207,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: D7B4FBA03CBC40B6B79DE40ED864D6DA Ref B: TYO201100115017 Ref C: 2024-08-26T09:36:42Z'
+ - 'Ref A: ACC49B1D0CA84163BF462F1641E5D6B6 Ref B: SEL221051802031 Ref C: 2025-02-10T08:09:41Z'
status:
code: 200
message: OK
@@ -7723,7 +8225,7 @@ interactions:
ParameterSetName:
- -g -n --ppg
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/availabilitySets/avset1?api-version=2024-07-01
response:
@@ -7732,7 +8234,7 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\"\
: \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"platformUpdateDomainCount\"\
: 5,\r\n \"platformFaultDomainCount\": 2,\r\n \"virtualMachines\": [],\r\
- \n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_HYRWAQIUX6TMH74MJ3ZZSIMRFDNARVR3ZSQBACSTFENBR4PWRXPOVA/providers/Microsoft.Compute/proximityPlacementGroups/myppg\"\
+ \n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_VICUY76HQBMGHPRG4WF5TZVCFHCA3RAZVWDOC3KE2ZSUJZOWYMLQXN/providers/Microsoft.Compute/proximityPlacementGroups/myppg\"\
\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n}"
headers:
cache-control:
@@ -7742,7 +8244,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:36:44 GMT
+ - Mon, 10 Feb 2025 08:09:42 GMT
expires:
- '-1'
pragma:
@@ -7753,12 +8255,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGetSubscriptionMaximum;23998
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3748'
x-msedge-ref:
- - 'Ref A: 88B17B8A2EA24A91878502EFC4FD50C1 Ref B: TYO201100113037 Ref C: 2024-08-26T09:36:44Z'
+ - 'Ref A: 0889459CFAB14D88A03D87F808288EBC Ref B: SEL221051805051 Ref C: 2025-02-10T08:09:42Z'
status:
code: 200
message: ''
@@ -7776,32 +8280,32 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg?api-version=2022-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg?api-version=2024-07-01
response:
body:
string: "{\r\n \"name\": \"myppg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_vm_vmss_000001/providers/Microsoft.Compute/proximityPlacementGroups/myppg\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\",\r\n \"virtualMachines\": [\r\n {\r\n \"id\"\
- : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_HYRWAQIUX6TMH74MJ3ZZSIMRFDNARVR3ZSQBACSTFENBR4PWRXPOVA/providers/Microsoft.Compute/virtualMachines/VM1\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_HYRWAQIUX6TMH74MJ3ZZSIMRFDNARVR3ZSQBACSTFENBR4PWRXPOVA/providers/Microsoft.Compute/virtualMachines/VMSS1_42DFA471\"\
- \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_HYRWAQIUX6TMH74MJ3ZZSIMRFDNARVR3ZSQBACSTFENBR4PWRXPOVA/providers/Microsoft.Compute/virtualMachines/VMSS1_88055883\"\
+ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_VICUY76HQBMGHPRG4WF5TZVCFHCA3RAZVWDOC3KE2ZSUJZOWYMLQXN/providers/Microsoft.Compute/virtualMachines/VM1\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_VICUY76HQBMGHPRG4WF5TZVCFHCA3RAZVWDOC3KE2ZSUJZOWYMLQXN/providers/Microsoft.Compute/virtualMachines/VMSS1_4AC38EA4\"\
+ \r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_VICUY76HQBMGHPRG4WF5TZVCFHCA3RAZVWDOC3KE2ZSUJZOWYMLQXN/providers/Microsoft.Compute/virtualMachines/VMSS1_ACD8B279\"\
\r\n }\r\n ],\r\n \"virtualMachineScaleSets\": [\r\n {\r\n\
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_HYRWAQIUX6TMH74MJ3ZZSIMRFDNARVR3ZSQBACSTFENBR4PWRXPOVA/providers/Microsoft.Compute/virtualMachineScaleSets/VMSS1\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_VICUY76HQBMGHPRG4WF5TZVCFHCA3RAZVWDOC3KE2ZSUJZOWYMLQXN/providers/Microsoft.Compute/virtualMachineScaleSets/VMSS1\"\
\r\n }\r\n ],\r\n \"availabilitySets\": [\r\n {\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_HYRWAQIUX6TMH74MJ3ZZSIMRFDNARVR3ZSQBACSTFENBR4PWRXPOVA/providers/Microsoft.Compute/availabilitySets/AVSET1\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_PPG_VM_VMSS_VICUY76HQBMGHPRG4WF5TZVCFHCA3RAZVWDOC3KE2ZSUJZOWYMLQXN/providers/Microsoft.Compute/availabilitySets/AVSET1\"\
\r\n }\r\n ]\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1637'
+ - '1622'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:36:45 GMT
+ - Mon, 10 Feb 2025 08:09:42 GMT
expires:
- '-1'
pragma:
@@ -7812,12 +8316,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/HighCostGetSubscriptionMaximum;898
+ - Microsoft.Compute/HighCostGetSubscriptionMaximum;899
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 9902FB05BC3D4223A806D62EE211352E Ref B: TYO201151005040 Ref C: 2024-08-26T09:36:45Z'
+ - 'Ref A: 7EEEA3C64BD24498AF18F681CB264B0D Ref B: SEL221051804045 Ref C: 2025-02-10T08:09:43Z'
status:
code: 200
message: ''
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_proximity_placement_group.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_proximity_placement_group.yaml
index 5d10f2f60f9..df00295b32e 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_proximity_placement_group.yaml
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_proximity_placement_group.yaml
@@ -13,12 +13,12 @@ interactions:
ParameterSetName:
- -n -t -g
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_cmds_000001?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001","name":"cli_test_ppg_cmds_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_proximity_placement_group","date":"2024-08-26T09:29:44Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001","name":"cli_test_ppg_cmds_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_proximity_placement_group","date":"2025-02-06T09:34:37Z","module":"vm"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -27,7 +27,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:29:46 GMT
+ - Thu, 06 Feb 2025 09:34:42 GMT
expires:
- '-1'
pragma:
@@ -39,15 +39,14 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3748'
+ - '3749'
x-msedge-ref:
- - 'Ref A: F8E6106A7FCA4DF49637C6E530BC280D Ref B: TYO201151001042 Ref C: 2024-08-26T09:29:46Z'
+ - 'Ref A: A919CE48DC2A48C88C14966323C5319C Ref B: SEL221051805035 Ref C: 2025-02-06T09:34:42Z'
status:
code: 200
message: OK
- request:
- body: '{"location": "westus", "tags": {}, "properties": {"proximityPlacementGroupType":
- "Standard"}}'
+ body: '{"location": "westus", "properties": {"proximityPlacementGroupType": "Standard"}}'
headers:
Accept:
- application/json
@@ -58,30 +57,30 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '93'
+ - '81'
Content-Type:
- application/json
ParameterSetName:
- -n -t -g
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1?api-version=2024-07-01
response:
body:
string: "{\r\n \"name\": \"my_ppg_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '361'
+ - '346'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:29:48 GMT
+ - Thu, 06 Feb 2025 09:34:44 GMT
expires:
- '-1'
pragma:
@@ -92,14 +91,16 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/PutDeletePPGSubscriptionMaximum;119
x-ms-ratelimit-remaining-subscription-global-writes:
- - '2999'
+ - '2998'
x-ms-ratelimit-remaining-subscription-writes:
- - '199'
+ - '198'
x-msedge-ref:
- - 'Ref A: 1ACD70DF0E424314A93E567888DB3CDF Ref B: TYO201100113039 Ref C: 2024-08-26T09:29:47Z'
+ - 'Ref A: 747334E6524A49E588DC077FDC93BA3D Ref B: SEL221051504033 Ref C: 2025-02-06T09:34:43Z'
status:
code: 201
message: ''
@@ -117,14 +118,14 @@ interactions:
ParameterSetName:
- -g -n --include-colocation-status
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1?includeColocationStatus=True&api-version=2022-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1?includeColocationStatus=True&api-version=2024-07-01
response:
body:
string: "{\r\n \"name\": \"my_ppg_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\",\r\n \"virtualMachines\": [],\r\n \"virtualMachineScaleSets\"\
: [],\r\n \"availabilitySets\": [],\r\n \"colocationStatus\": {\r\n\
\ \"code\": \"ColocationStatus/Aligned\",\r\n \"level\": \"Info\"\
@@ -134,11 +135,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '671'
+ - '656'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:29:49 GMT
+ - Thu, 06 Feb 2025 09:34:46 GMT
expires:
- '-1'
pragma:
@@ -149,12 +150,14 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/HighCostGetSubscriptionMaximum;899
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 4BAE015F977E472CB45016067D08972A Ref B: TYO201151002042 Ref C: 2024-08-26T09:29:49Z'
+ - 'Ref A: A8F87797CEDA4FCC8097ADE29DA7EFAC Ref B: SEL221051504047 Ref C: 2025-02-06T09:34:45Z'
status:
code: 200
message: ''
@@ -172,21 +175,21 @@ interactions:
ParameterSetName:
- -n -t -g
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_cmds_000001?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001","name":"cli_test_ppg_cmds_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_proximity_placement_group","date":"2024-08-26T09:29:44Z","module":"vm","DateCreated":"2024-08-26T09:29:47Z","Creator":"aaa@foo.com"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001","name":"cli_test_ppg_cmds_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_proximity_placement_group","date":"2025-02-06T09:34:37Z","module":"vm","Creator":"zhuyan@microsoft.com","DateCreated":"2025-02-06T09:34:44Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
content-length:
- - '456'
+ - '450'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:29:49 GMT
+ - Thu, 06 Feb 2025 09:34:46 GMT
expires:
- '-1'
pragma:
@@ -200,13 +203,12 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 38A7D9039ABF4997AFB4224AE0B53B06 Ref B: TYO201100116029 Ref C: 2024-08-26T09:29:50Z'
+ - 'Ref A: 0A1D0AAA1A1342E691615D0F63D9DF75 Ref B: SEL221051503045 Ref C: 2025-02-06T09:34:46Z'
status:
code: 200
message: OK
- request:
- body: '{"location": "westus", "tags": {}, "properties": {"proximityPlacementGroupType":
- "Standard"}}'
+ body: '{"location": "westus", "properties": {"proximityPlacementGroupType": "Standard"}}'
headers:
Accept:
- application/json
@@ -217,30 +219,30 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '93'
+ - '81'
Content-Type:
- application/json
ParameterSetName:
- -n -t -g
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_2?api-version=2024-07-01
response:
body:
string: "{\r\n \"name\": \"my_ppg_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_2\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '361'
+ - '346'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:29:51 GMT
+ - Thu, 06 Feb 2025 09:34:50 GMT
expires:
- '-1'
pragma:
@@ -251,6 +253,8 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/PutDeletePPGSubscriptionMaximum;118
x-ms-ratelimit-remaining-subscription-global-writes:
@@ -258,7 +262,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: A617E250268F4E0398CD67DC3D5EBBDF Ref B: TYO201151002029 Ref C: 2024-08-26T09:29:50Z'
+ - 'Ref A: 30BD980931674388BD8C8184C16B768E Ref B: SEL221051801023 Ref C: 2025-02-06T09:34:47Z'
status:
code: 201
message: ''
@@ -276,21 +280,21 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_cmds_000001?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001","name":"cli_test_ppg_cmds_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_proximity_placement_group","date":"2024-08-26T09:29:44Z","module":"vm","DateCreated":"2024-08-26T09:29:47Z","Creator":"aaa@foo.com"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001","name":"cli_test_ppg_cmds_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_proximity_placement_group","date":"2025-02-06T09:34:37Z","module":"vm","Creator":"zhuyan@microsoft.com","DateCreated":"2025-02-06T09:34:44Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
content-length:
- - '456'
+ - '450'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:29:52 GMT
+ - Thu, 06 Feb 2025 09:34:51 GMT
expires:
- '-1'
pragma:
@@ -302,14 +306,14 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3748'
+ - '3749'
x-msedge-ref:
- - 'Ref A: D1DE31BB6D844945ACC21AD1F2CD32EA Ref B: TYO201151003036 Ref C: 2024-08-26T09:29:52Z'
+ - 'Ref A: C1CCDC5D8B7848569259DEA91FE69737 Ref B: SEL221051503021 Ref C: 2025-02-06T09:34:51Z'
status:
code: 200
message: OK
- request:
- body: '{"location": "westus", "tags": {}}'
+ body: '{"location": "westus"}'
headers:
Accept:
- application/json
@@ -320,30 +324,30 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '34'
+ - '22'
Content-Type:
- application/json
ParameterSetName:
- -n -g
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_3?api-version=2024-07-01
response:
body:
string: "{\r\n \"name\": \"my_ppg_3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_3\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '361'
+ - '346'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:29:54 GMT
+ - Thu, 06 Feb 2025 09:34:55 GMT
expires:
- '-1'
pragma:
@@ -354,6 +358,8 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/PutDeletePPGSubscriptionMaximum;117
x-ms-ratelimit-remaining-subscription-global-writes:
@@ -361,7 +367,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: 417E74CE73784FD89E2A10CAE3DA91E4 Ref B: TYO201151004062 Ref C: 2024-08-26T09:29:53Z'
+ - 'Ref A: B03B082686D64612B9C6913884E37AD0 Ref B: SEL221051801045 Ref C: 2025-02-06T09:34:52Z'
status:
code: 201
message: ''
@@ -379,25 +385,71 @@ interactions:
ParameterSetName:
- -n -g -t
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_cmds_000001?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001","name":"cli_test_ppg_cmds_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_proximity_placement_group","date":"2025-02-06T09:34:37Z","module":"vm","Creator":"zhuyan@microsoft.com","DateCreated":"2025-02-06T09:34:44Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '450'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 06 Feb 2025 09:34: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-msedge-ref:
+ - 'Ref A: 74A3AB9F6DB943A48260142D2512A28E Ref B: SEL221051805029 Ref C: 2025-02-06T09:34:56Z'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - ppg update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g -t
+ User-Agent:
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_3?api-version=2024-07-01
response:
body:
string: "{\r\n \"name\": \"my_ppg_3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_3\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\",\r\n \"virtualMachines\": [],\r\n \"virtualMachineScaleSets\"\
: [],\r\n \"availabilitySets\": []\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '454'
+ - '439'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:29:55 GMT
+ - Thu, 06 Feb 2025 09:34:57 GMT
expires:
- '-1'
pragma:
@@ -408,18 +460,19 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/HighCostGetSubscriptionMaximum;898
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 4B92A8F2E6824684B4DC585698951B63 Ref B: TYO201151004011 Ref C: 2024-08-26T09:29:55Z'
+ - 'Ref A: 4282EFBA08E44F90B9EEF214F9A10D1E Ref B: SEL221051801021 Ref C: 2025-02-06T09:34:56Z'
status:
code: 200
message: ''
- request:
- body: '{"location": "westus", "tags": {}, "properties": {"proximityPlacementGroupType":
- "Standard"}}'
+ body: '{"location": "westus", "properties": {"proximityPlacementGroupType": "Standard"}}'
headers:
Accept:
- application/json
@@ -430,30 +483,30 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '93'
+ - '81'
Content-Type:
- application/json
ParameterSetName:
- -n -g -t
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_3?api-version=2024-07-01
response:
body:
string: "{\r\n \"name\": \"my_ppg_3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_3\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '361'
+ - '346'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:29:56 GMT
+ - Thu, 06 Feb 2025 09:34:59 GMT
expires:
- '-1'
pragma:
@@ -464,6 +517,8 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/PutDeletePPGSubscriptionMaximum;116
x-ms-ratelimit-remaining-subscription-global-writes:
@@ -471,7 +526,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: 7E58619EEE1D4FFEA2CB45C5FEB52225 Ref B: TYO201100116031 Ref C: 2024-08-26T09:29:56Z'
+ - 'Ref A: 28C385C441824D0F95CE9A3C9A31E25D Ref B: SEL221051801021 Ref C: 2025-02-06T09:34:57Z'
status:
code: 200
message: ''
@@ -489,39 +544,21 @@ interactions:
ParameterSetName:
- -g
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups?api-version=2024-07-01
response:
body:
- string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"my_ppg_1\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1\"\
- ,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \
- \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\"\
- : {\r\n \"proximityPlacementGroupType\": \"Standard\",\r\n \"\
- virtualMachines\": [],\r\n \"virtualMachineScaleSets\": [],\r\n \
- \ \"availabilitySets\": []\r\n }\r\n },\r\n {\r\n \"name\"\
- : \"my_ppg_2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_2\"\
- ,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \
- \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\"\
- : {\r\n \"proximityPlacementGroupType\": \"Standard\",\r\n \"\
- virtualMachines\": [],\r\n \"virtualMachineScaleSets\": [],\r\n \
- \ \"availabilitySets\": []\r\n }\r\n },\r\n {\r\n \"name\"\
- : \"my_ppg_3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_3\"\
- ,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \
- \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\"\
- : {\r\n \"proximityPlacementGroupType\": \"Standard\",\r\n \"\
- virtualMachines\": [],\r\n \"virtualMachineScaleSets\": [],\r\n \
- \ \"availabilitySets\": []\r\n }\r\n }\r\n ]\r\n}"
+ string: '{"value":[{"name":"my_ppg_1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1","type":"Microsoft.Compute/proximityPlacementGroups","location":"westus","properties":{"proximityPlacementGroupType":"Standard","virtualMachines":[],"virtualMachineScaleSets":[],"availabilitySets":[]}},{"name":"my_ppg_2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_2","type":"Microsoft.Compute/proximityPlacementGroups","location":"westus","properties":{"proximityPlacementGroupType":"Standard","virtualMachines":[],"virtualMachineScaleSets":[],"availabilitySets":[]}},{"name":"my_ppg_3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_3","type":"Microsoft.Compute/proximityPlacementGroups","location":"westus","properties":{"proximityPlacementGroupType":"Standard","virtualMachines":[],"virtualMachineScaleSets":[],"availabilitySets":[]}}]}'
headers:
cache-control:
- no-cache
content-length:
- - '1549'
+ - '1154'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:29:56 GMT
+ - Thu, 06 Feb 2025 09:35:01 GMT
expires:
- '-1'
pragma:
@@ -532,15 +569,19 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
+ x-ms-original-request-ids:
+ - 5a991774-657b-42c9-8dd5-7dcecc6294b7
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGetSubscriptionMaximum;23991
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: F9EB2B6EFC284B20BF68CA2CB2D9804D Ref B: TYO201100115025 Ref C: 2024-08-26T09:29:57Z'
+ - 'Ref A: 599AA7E0D3674212B542CC6991E4F940 Ref B: SEL221051504053 Ref C: 2025-02-06T09:34:59Z'
status:
code: 200
- message: ''
+ message: OK
- request:
body: null
headers:
@@ -557,9 +598,9 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1?api-version=2022-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_1?api-version=2024-07-01
response:
body:
string: ''
@@ -569,7 +610,7 @@ interactions:
content-length:
- '0'
date:
- - Mon, 26 Aug 2024 09:29:59 GMT
+ - Thu, 06 Feb 2025 09:35:02 GMT
expires:
- '-1'
pragma:
@@ -580,6 +621,8 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/PutDeletePPGSubscriptionMaximum;115
x-ms-ratelimit-remaining-subscription-deletes:
@@ -587,7 +630,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-deletes:
- '2999'
x-msedge-ref:
- - 'Ref A: E8E0580BD2144DB3BE9C6053B200C758 Ref B: TYO201100115021 Ref C: 2024-08-26T09:29:58Z'
+ - 'Ref A: 0DC490B698B2466381D9431C45B57F3F Ref B: SEL221051801037 Ref C: 2025-02-06T09:35:01Z'
status:
code: 200
message: ''
@@ -605,33 +648,21 @@ interactions:
ParameterSetName:
- -g
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups?api-version=2024-07-01
response:
body:
- string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"my_ppg_2\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_2\"\
- ,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \
- \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\"\
- : {\r\n \"proximityPlacementGroupType\": \"Standard\",\r\n \"\
- virtualMachines\": [],\r\n \"virtualMachineScaleSets\": [],\r\n \
- \ \"availabilitySets\": []\r\n }\r\n },\r\n {\r\n \"name\"\
- : \"my_ppg_3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_3\"\
- ,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \
- \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\"\
- : {\r\n \"proximityPlacementGroupType\": \"Standard\",\r\n \"\
- virtualMachines\": [],\r\n \"virtualMachineScaleSets\": [],\r\n \
- \ \"availabilitySets\": []\r\n }\r\n }\r\n ]\r\n}"
+ string: '{"value":[{"name":"my_ppg_2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_2","type":"Microsoft.Compute/proximityPlacementGroups","location":"westus","properties":{"proximityPlacementGroupType":"Standard","virtualMachines":[],"virtualMachineScaleSets":[],"availabilitySets":[]}},{"name":"my_ppg_3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_3","type":"Microsoft.Compute/proximityPlacementGroups","location":"westus","properties":{"proximityPlacementGroupType":"Standard","virtualMachines":[],"virtualMachineScaleSets":[],"availabilitySets":[]}}]}'
headers:
cache-control:
- no-cache
content-length:
- - '1040'
+ - '773'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:30:00 GMT
+ - Thu, 06 Feb 2025 09:35:03 GMT
expires:
- '-1'
pragma:
@@ -642,15 +673,65 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
+ x-ms-original-request-ids:
+ - 867b0f07-2591-4c76-97f7-c43e7e5bca47
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGetSubscriptionMaximum;23990
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23998
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 36E2BE84F45B49458206142E9C635762 Ref B: TYO201151001011 Ref C: 2024-08-26T09:30:01Z'
+ - 'Ref A: A9339AB56EFB4BB383F72408971A8DA1 Ref B: SEL221051805033 Ref C: 2025-02-06T09:35:03Z'
status:
code: 200
- message: ''
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - ppg update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --set
+ User-Agent:
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_ppg_cmds_000001?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001","name":"cli_test_ppg_cmds_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_proximity_placement_group","date":"2025-02-06T09:34:37Z","module":"vm","Creator":"zhuyan@microsoft.com","DateCreated":"2025-02-06T09:34:44Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '450'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 06 Feb 2025 09:35: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-ratelimit-remaining-subscription-global-reads:
+ - '3749'
+ x-msedge-ref:
+ - 'Ref A: 90314E36BF044942915C9202E457FE5C Ref B: SEL221051504049 Ref C: 2025-02-06T09:35:04Z'
+ status:
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -665,25 +746,25 @@ interactions:
ParameterSetName:
- -n -g --set
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_3?api-version=2024-07-01
response:
body:
string: "{\r\n \"name\": \"my_ppg_3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_3\"\
,\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\"\
- : \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
+ : \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\"\
: \"Standard\",\r\n \"virtualMachines\": [],\r\n \"virtualMachineScaleSets\"\
: [],\r\n \"availabilitySets\": []\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '454'
+ - '439'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:30:02 GMT
+ - Thu, 06 Feb 2025 09:35:04 GMT
expires:
- '-1'
pragma:
@@ -694,18 +775,20 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/HighCostGetSubscriptionMaximum;897
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 8DA5F5091B424B7998BC828BD64ADE1B Ref B: TYO201151001034 Ref C: 2024-08-26T09:30:02Z'
+ - 'Ref A: 8708F75D46FB48498EA7AE8CD59AB27C Ref B: SEL221051802029 Ref C: 2025-02-06T09:35:04Z'
status:
code: 200
message: ''
- request:
- body: '{"location": "westus", "tags": {"foo": "bar"}, "properties": {"proximityPlacementGroupType":
- "Standard"}}'
+ body: '{"location": "westus", "properties": {"proximityPlacementGroupType": "Standard"},
+ "tags": {"foo": "bar"}}'
headers:
Accept:
- application/json
@@ -722,7 +805,7 @@ interactions:
ParameterSetName:
- -n -g --set
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.69.0 azsdk-python-core/1.31.0 Python/3.10.11 (Windows-10-10.0.26100-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_ppg_cmds_000001/providers/Microsoft.Compute/proximityPlacementGroups/my_ppg_3?api-version=2024-07-01
response:
@@ -739,7 +822,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:30:06 GMT
+ - Thu, 06 Feb 2025 09:35:08 GMT
expires:
- '-1'
pragma:
@@ -750,6 +833,8 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/PutDeletePPGSubscriptionMaximum;114
x-ms-ratelimit-remaining-subscription-global-writes:
@@ -757,7 +842,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: A2E4ABD27FA04B249DC70F0C8E0BE3A7 Ref B: TYO201100115053 Ref C: 2024-08-26T09:30:04Z'
+ - 'Ref A: C39047CBE39648E58463E3B852E34E2F Ref B: SEL221051802029 Ref C: 2025-02-06T09:35:05Z'
status:
code: 200
message: ''
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py
index 6b3dc109989..3ecd3c3f19d 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py
@@ -8582,19 +8582,21 @@ def test_ppg_with_related_resources(self, resource_group):
'avset': 'avset1',
'ssh_key': TEST_SSH_KEY_PUB,
'subnet': 'subnet1',
- 'vnet': 'vnet1'
+ 'vnet': 'vnet1',
+ 'nsg': 'nsg1',
})
self.kwargs['ppg_id'] = self.cmd('ppg create -n {ppg} -t standard -g {rg}').get_output_in_json()['id']
self.kwargs['vm_id'] = self.cmd(
- 'vm create -g {rg} -n {vm} --image Debian:debian-10:10:latest --admin-username debian '
+ 'vm create -g {rg} -n {vm} --image Debian:debian-10:10:latest --admin-username debian --use-unmanaged-disk '
'--ssh-key-value \'{ssh_key}\' --ppg {ppg} --subnet {subnet} --vnet-name {vnet} --nsg-rule NONE').get_output_in_json()['id']
# Disable default outbound access
self.cmd('network vnet subnet update -g {rg} --vnet-name {vnet} -n {subnet} --default-outbound-access false')
- self.cmd('vmss create -g {rg} -n {vmss} --image Debian:debian-10:10:latest --admin-username debian --ssh-key-value \'{ssh_key}\' --ppg {ppg_id} --orchestration-mode Flexible')
+ self.cmd('network nsg create -g {rg} -n {nsg}')
+ self.cmd('vmss create -g {rg} -n {vmss} --image Debian:debian-10:10:latest --admin-username debian --ssh-key-value \'{ssh_key}\' --ppg {ppg_id} --orchestration-mode Flexible --nsg {nsg}')
self.kwargs['vmss_id'] = self.cmd('vmss show -g {rg} -n {vmss}').get_output_in_json()['id']
self.kwargs['avset_id'] = self.cmd('vm availability-set create -g {rg} -n {avset} --ppg {ppg}').get_output_in_json()['id']
@@ -8617,12 +8619,14 @@ def test_ppg_update(self, resource_group):
'avset': 'avset1',
'ssh_key': TEST_SSH_KEY_PUB,
'subnet': 'subnet1',
- 'vnet': 'vnet1'
+ 'vnet': 'vnet1',
+ 'nsg': 'nsg1',
})
self.kwargs['ppg_id'] = self.cmd('ppg create -g {rg} -n {ppg} -t standard').get_output_in_json()['id']
- self.cmd('vmss create -g {rg} -n {vmss} --image Debian:debian-10:10:latest --admin-username debian --ssh-key-value \'{ssh_key}\' --orchestration-mode Uniform --lb-sku Standard')
+ self.cmd('network nsg create -g {rg} -n {nsg}')
+ self.cmd('vmss create -g {rg} -n {vmss} --image Debian:debian-10:10:latest --admin-username debian --ssh-key-value \'{ssh_key}\' --orchestration-mode Uniform --lb-sku Standard --nsg {nsg}')
self.kwargs['vmss_id'] = self.cmd('vmss show -g {rg} -n {vmss}').get_output_in_json()['id']
self.cmd('vmss deallocate -g {rg} -n {vmss}')
time.sleep(30)
@@ -12110,7 +12114,8 @@ def test_vm_add_application_with_config_override(self, resource_group):
@ResourceGroupPreparer()
def test_vmss_add_application_empty_version_ids(self, resource_group):
self.kwargs.update({
- 'vmss': 'vmss1'
+ 'vmss': 'vmss1',
+ 'nsg': 'nsg1',
})
# Prepare VMSS