From 2690e056ec67d59d7a8af88e6ba1706769ffe7c4 Mon Sep 17 00:00:00 2001
From: Yan Zhu <105691024+yanzhudd@users.noreply.github.com>
Date: Thu, 6 Mar 2025 15:04:53 +0800
Subject: [PATCH] {Compute} `az vm application`: Migrate to Code Gen V2
(#30937)
---
.../vm/aaz/latest/vm/__init__.py | 2 +
.../command_modules/vm/aaz/latest/vm/_show.py | 1517 +++++++
.../vm/aaz/latest/vm/_update.py | 3638 +++++++++++++++++
.../vm/azure_stack/commands.py | 3 -
.../azure/cli/command_modules/vm/custom.py | 85 +-
.../cli/command_modules/vm/operations/vm.py | 17 +-
.../recordings/test_vm_add_application.yaml | 1935 +++++----
..._vm_add_application_empty_version_ids.yaml | 1901 +++++----
..._add_application_with_config_override.yaml | 2418 ++++++-----
...dd_application_with_order_application.yaml | 2134 ++++++----
.../vm/tests/latest/test_vm_commands.py | 10 +-
11 files changed, 9998 insertions(+), 3662 deletions(-)
create mode 100644 src/azure-cli/azure/cli/command_modules/vm/aaz/latest/vm/_show.py
create mode 100644 src/azure-cli/azure/cli/command_modules/vm/aaz/latest/vm/_update.py
diff --git a/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/vm/__init__.py b/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/vm/__init__.py
index e8c86c84e31..f41bf337ca2 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/vm/__init__.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/vm/__init__.py
@@ -19,5 +19,7 @@
from ._reapply import *
from ._redeploy import *
from ._reimage import *
+from ._show import *
from ._simulate_eviction import *
from ._start import *
+from ._update import *
diff --git a/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/vm/_show.py b/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/vm/_show.py
new file mode 100644
index 00000000000..fe93f1344b5
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/vm/_show.py
@@ -0,0 +1,1517 @@
+# --------------------------------------------------------------------------------------------
+# 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 *
+
+
+class Show(AAZCommand):
+ """Get information about the model view or the instance view of a virtual machine.
+ """
+
+ _aaz_info = {
+ "version": "2024-07-01",
+ "resources": [
+ ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.compute/virtualmachines/{}", "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.resource_group = AAZResourceGroupNameArg(
+ required=True,
+ )
+ _args_schema.vm_name = AAZStrArg(
+ options=["-n", "--name", "--vm-name"],
+ help="The name of the virtual machine.",
+ required=True,
+ id_part="name",
+ )
+ _args_schema.expand = AAZStrArg(
+ options=["--expand"],
+ help="The expand expression to apply on the operation. 'InstanceView' retrieves a snapshot of the runtime properties of the virtual machine that is managed by the platform and can change outside of control plane operations. 'UserData' retrieves the UserData property as part of the VM model view that was provided by the user during the VM Create/Update operation.",
+ enum={"instanceView": "instanceView", "userData": "userData"},
+ )
+ return cls._args_schema
+
+ def _execute_operations(self):
+ self.pre_operations()
+ self.VirtualMachinesGet(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 VirtualMachinesGet(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/virtualMachines/{vmName}",
+ **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,
+ ),
+ **self.serialize_url_param(
+ "vmName", self.ctx.args.vm_name,
+ required=True,
+ ),
+ }
+ return parameters
+
+ @property
+ def query_parameters(self):
+ parameters = {
+ **self.serialize_query_param(
+ "$expand", self.ctx.args.expand,
+ ),
+ **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.etag = AAZStrType(
+ flags={"read_only": True},
+ )
+ _schema_on_200.extended_location = AAZObjectType(
+ serialized_name="extendedLocation",
+ )
+ _schema_on_200.id = AAZStrType(
+ flags={"read_only": True},
+ )
+ _schema_on_200.identity = AAZIdentityObjectType()
+ _schema_on_200.location = AAZStrType(
+ flags={"required": True},
+ )
+ _schema_on_200.managed_by = AAZStrType(
+ serialized_name="managedBy",
+ flags={"read_only": True},
+ )
+ _schema_on_200.name = AAZStrType(
+ flags={"read_only": True},
+ )
+ _schema_on_200.plan = AAZObjectType()
+ _schema_on_200.properties = AAZObjectType(
+ flags={"client_flatten": True},
+ )
+ _schema_on_200.resources = AAZListType(
+ flags={"read_only": True},
+ )
+ _schema_on_200.tags = AAZDictType()
+ _schema_on_200.type = AAZStrType(
+ flags={"read_only": True},
+ )
+ _schema_on_200.zones = AAZListType()
+
+ extended_location = cls._schema_on_200.extended_location
+ extended_location.name = AAZStrType()
+ extended_location.type = AAZStrType()
+
+ identity = cls._schema_on_200.identity
+ identity.principal_id = AAZStrType(
+ serialized_name="principalId",
+ flags={"read_only": True},
+ )
+ identity.tenant_id = AAZStrType(
+ serialized_name="tenantId",
+ flags={"read_only": True},
+ )
+ identity.type = AAZStrType()
+ identity.user_assigned_identities = AAZDictType(
+ serialized_name="userAssignedIdentities",
+ )
+
+ user_assigned_identities = cls._schema_on_200.identity.user_assigned_identities
+ user_assigned_identities.Element = AAZObjectType()
+
+ _element = cls._schema_on_200.identity.user_assigned_identities.Element
+ _element.client_id = AAZStrType(
+ serialized_name="clientId",
+ flags={"read_only": True},
+ )
+ _element.principal_id = AAZStrType(
+ serialized_name="principalId",
+ flags={"read_only": True},
+ )
+
+ plan = cls._schema_on_200.plan
+ plan.name = AAZStrType()
+ plan.product = AAZStrType()
+ plan.promotion_code = AAZStrType(
+ serialized_name="promotionCode",
+ )
+ plan.publisher = AAZStrType()
+
+ properties = cls._schema_on_200.properties
+ properties.additional_capabilities = AAZObjectType(
+ serialized_name="additionalCapabilities",
+ )
+ properties.application_profile = AAZObjectType(
+ serialized_name="applicationProfile",
+ )
+ properties.availability_set = AAZObjectType(
+ serialized_name="availabilitySet",
+ )
+ _ShowHelper._build_schema_sub_resource_read(properties.availability_set)
+ properties.billing_profile = AAZObjectType(
+ serialized_name="billingProfile",
+ )
+ properties.capacity_reservation = AAZObjectType(
+ serialized_name="capacityReservation",
+ )
+ properties.diagnostics_profile = AAZObjectType(
+ serialized_name="diagnosticsProfile",
+ )
+ properties.eviction_policy = AAZStrType(
+ serialized_name="evictionPolicy",
+ )
+ properties.extensions_time_budget = AAZStrType(
+ serialized_name="extensionsTimeBudget",
+ )
+ properties.hardware_profile = AAZObjectType(
+ serialized_name="hardwareProfile",
+ )
+ properties.host = AAZObjectType()
+ _ShowHelper._build_schema_sub_resource_read(properties.host)
+ properties.host_group = AAZObjectType(
+ serialized_name="hostGroup",
+ )
+ _ShowHelper._build_schema_sub_resource_read(properties.host_group)
+ properties.instance_view = AAZObjectType(
+ serialized_name="instanceView",
+ flags={"read_only": True},
+ )
+ properties.license_type = AAZStrType(
+ serialized_name="licenseType",
+ )
+ properties.network_profile = AAZObjectType(
+ serialized_name="networkProfile",
+ )
+ properties.os_profile = AAZObjectType(
+ serialized_name="osProfile",
+ )
+ properties.platform_fault_domain = AAZIntType(
+ serialized_name="platformFaultDomain",
+ )
+ properties.priority = AAZStrType()
+ properties.provisioning_state = AAZStrType(
+ serialized_name="provisioningState",
+ flags={"read_only": True},
+ )
+ properties.proximity_placement_group = AAZObjectType(
+ serialized_name="proximityPlacementGroup",
+ )
+ _ShowHelper._build_schema_sub_resource_read(properties.proximity_placement_group)
+ properties.scheduled_events_policy = AAZObjectType(
+ serialized_name="scheduledEventsPolicy",
+ )
+ properties.scheduled_events_profile = AAZObjectType(
+ serialized_name="scheduledEventsProfile",
+ )
+ properties.security_profile = AAZObjectType(
+ serialized_name="securityProfile",
+ )
+ properties.storage_profile = AAZObjectType(
+ serialized_name="storageProfile",
+ )
+ properties.time_created = AAZStrType(
+ serialized_name="timeCreated",
+ flags={"read_only": True},
+ )
+ properties.user_data = AAZStrType(
+ serialized_name="userData",
+ )
+ properties.virtual_machine_scale_set = AAZObjectType(
+ serialized_name="virtualMachineScaleSet",
+ )
+ _ShowHelper._build_schema_sub_resource_read(properties.virtual_machine_scale_set)
+ properties.vm_id = AAZStrType(
+ serialized_name="vmId",
+ flags={"read_only": True},
+ )
+
+ additional_capabilities = cls._schema_on_200.properties.additional_capabilities
+ additional_capabilities.hibernation_enabled = AAZBoolType(
+ serialized_name="hibernationEnabled",
+ )
+ additional_capabilities.ultra_ssd_enabled = AAZBoolType(
+ serialized_name="ultraSSDEnabled",
+ )
+
+ application_profile = cls._schema_on_200.properties.application_profile
+ application_profile.gallery_applications = AAZListType(
+ serialized_name="galleryApplications",
+ )
+
+ gallery_applications = cls._schema_on_200.properties.application_profile.gallery_applications
+ gallery_applications.Element = AAZObjectType()
+
+ _element = cls._schema_on_200.properties.application_profile.gallery_applications.Element
+ _element.configuration_reference = AAZStrType(
+ serialized_name="configurationReference",
+ )
+ _element.enable_automatic_upgrade = AAZBoolType(
+ serialized_name="enableAutomaticUpgrade",
+ )
+ _element.order = AAZIntType()
+ _element.package_reference_id = AAZStrType(
+ serialized_name="packageReferenceId",
+ flags={"required": True},
+ )
+ _element.tags = AAZStrType()
+ _element.treat_failure_as_deployment_failure = AAZBoolType(
+ serialized_name="treatFailureAsDeploymentFailure",
+ )
+
+ billing_profile = cls._schema_on_200.properties.billing_profile
+ billing_profile.max_price = AAZFloatType(
+ serialized_name="maxPrice",
+ )
+
+ capacity_reservation = cls._schema_on_200.properties.capacity_reservation
+ capacity_reservation.capacity_reservation_group = AAZObjectType(
+ serialized_name="capacityReservationGroup",
+ )
+ _ShowHelper._build_schema_sub_resource_read(capacity_reservation.capacity_reservation_group)
+
+ diagnostics_profile = cls._schema_on_200.properties.diagnostics_profile
+ diagnostics_profile.boot_diagnostics = AAZObjectType(
+ serialized_name="bootDiagnostics",
+ )
+
+ boot_diagnostics = cls._schema_on_200.properties.diagnostics_profile.boot_diagnostics
+ boot_diagnostics.enabled = AAZBoolType()
+ boot_diagnostics.storage_uri = AAZStrType(
+ serialized_name="storageUri",
+ )
+
+ hardware_profile = cls._schema_on_200.properties.hardware_profile
+ hardware_profile.vm_size = AAZStrType(
+ serialized_name="vmSize",
+ )
+ hardware_profile.vm_size_properties = AAZObjectType(
+ serialized_name="vmSizeProperties",
+ )
+
+ vm_size_properties = cls._schema_on_200.properties.hardware_profile.vm_size_properties
+ vm_size_properties.v_cp_us_available = AAZIntType(
+ serialized_name="vCPUsAvailable",
+ )
+ vm_size_properties.v_cp_us_per_core = AAZIntType(
+ serialized_name="vCPUsPerCore",
+ )
+
+ instance_view = cls._schema_on_200.properties.instance_view
+ instance_view.assigned_host = AAZStrType(
+ serialized_name="assignedHost",
+ flags={"read_only": True},
+ )
+ instance_view.boot_diagnostics = AAZObjectType(
+ serialized_name="bootDiagnostics",
+ )
+ instance_view.computer_name = AAZStrType(
+ serialized_name="computerName",
+ )
+ instance_view.disks = AAZListType()
+ instance_view.extensions = AAZListType()
+ instance_view.hyper_v_generation = AAZStrType(
+ serialized_name="hyperVGeneration",
+ )
+ instance_view.is_vm_in_standby_pool = AAZBoolType(
+ serialized_name="isVMInStandbyPool",
+ flags={"read_only": True},
+ )
+ instance_view.maintenance_redeploy_status = AAZObjectType(
+ serialized_name="maintenanceRedeployStatus",
+ )
+ instance_view.os_name = AAZStrType(
+ serialized_name="osName",
+ )
+ instance_view.os_version = AAZStrType(
+ serialized_name="osVersion",
+ )
+ instance_view.patch_status = AAZObjectType(
+ serialized_name="patchStatus",
+ )
+ instance_view.platform_fault_domain = AAZIntType(
+ serialized_name="platformFaultDomain",
+ )
+ instance_view.platform_update_domain = AAZIntType(
+ serialized_name="platformUpdateDomain",
+ )
+ instance_view.rdp_thumb_print = AAZStrType(
+ serialized_name="rdpThumbPrint",
+ )
+ instance_view.statuses = AAZListType()
+ instance_view.vm_agent = AAZObjectType(
+ serialized_name="vmAgent",
+ )
+ instance_view.vm_health = AAZObjectType(
+ serialized_name="vmHealth",
+ flags={"read_only": True},
+ )
+
+ boot_diagnostics = cls._schema_on_200.properties.instance_view.boot_diagnostics
+ boot_diagnostics.console_screenshot_blob_uri = AAZStrType(
+ serialized_name="consoleScreenshotBlobUri",
+ flags={"read_only": True},
+ )
+ boot_diagnostics.serial_console_log_blob_uri = AAZStrType(
+ serialized_name="serialConsoleLogBlobUri",
+ flags={"read_only": True},
+ )
+ boot_diagnostics.status = AAZObjectType(
+ flags={"read_only": True},
+ )
+ _ShowHelper._build_schema_instance_view_status_read(boot_diagnostics.status)
+
+ disks = cls._schema_on_200.properties.instance_view.disks
+ disks.Element = AAZObjectType()
+
+ _element = cls._schema_on_200.properties.instance_view.disks.Element
+ _element.encryption_settings = AAZListType(
+ serialized_name="encryptionSettings",
+ )
+ _element.name = AAZStrType()
+ _element.statuses = AAZListType()
+
+ encryption_settings = cls._schema_on_200.properties.instance_view.disks.Element.encryption_settings
+ encryption_settings.Element = AAZObjectType()
+ _ShowHelper._build_schema_disk_encryption_settings_read(encryption_settings.Element)
+
+ statuses = cls._schema_on_200.properties.instance_view.disks.Element.statuses
+ statuses.Element = AAZObjectType()
+ _ShowHelper._build_schema_instance_view_status_read(statuses.Element)
+
+ extensions = cls._schema_on_200.properties.instance_view.extensions
+ extensions.Element = AAZObjectType()
+ _ShowHelper._build_schema_virtual_machine_extension_instance_view_read(extensions.Element)
+
+ maintenance_redeploy_status = cls._schema_on_200.properties.instance_view.maintenance_redeploy_status
+ maintenance_redeploy_status.is_customer_initiated_maintenance_allowed = AAZBoolType(
+ serialized_name="isCustomerInitiatedMaintenanceAllowed",
+ )
+ maintenance_redeploy_status.last_operation_message = AAZStrType(
+ serialized_name="lastOperationMessage",
+ )
+ maintenance_redeploy_status.last_operation_result_code = AAZStrType(
+ serialized_name="lastOperationResultCode",
+ )
+ maintenance_redeploy_status.maintenance_window_end_time = AAZStrType(
+ serialized_name="maintenanceWindowEndTime",
+ )
+ maintenance_redeploy_status.maintenance_window_start_time = AAZStrType(
+ serialized_name="maintenanceWindowStartTime",
+ )
+ maintenance_redeploy_status.pre_maintenance_window_end_time = AAZStrType(
+ serialized_name="preMaintenanceWindowEndTime",
+ )
+ maintenance_redeploy_status.pre_maintenance_window_start_time = AAZStrType(
+ serialized_name="preMaintenanceWindowStartTime",
+ )
+
+ patch_status = cls._schema_on_200.properties.instance_view.patch_status
+ patch_status.available_patch_summary = AAZObjectType(
+ serialized_name="availablePatchSummary",
+ )
+ patch_status.configuration_statuses = AAZListType(
+ serialized_name="configurationStatuses",
+ flags={"read_only": True},
+ )
+ patch_status.last_patch_installation_summary = AAZObjectType(
+ serialized_name="lastPatchInstallationSummary",
+ )
+
+ available_patch_summary = cls._schema_on_200.properties.instance_view.patch_status.available_patch_summary
+ available_patch_summary.assessment_activity_id = AAZStrType(
+ serialized_name="assessmentActivityId",
+ flags={"read_only": True},
+ )
+ available_patch_summary.critical_and_security_patch_count = AAZIntType(
+ serialized_name="criticalAndSecurityPatchCount",
+ flags={"read_only": True},
+ )
+ available_patch_summary.error = AAZObjectType(
+ flags={"read_only": True},
+ )
+ _ShowHelper._build_schema_api_error_read(available_patch_summary.error)
+ available_patch_summary.last_modified_time = AAZStrType(
+ serialized_name="lastModifiedTime",
+ flags={"read_only": True},
+ )
+ available_patch_summary.other_patch_count = AAZIntType(
+ serialized_name="otherPatchCount",
+ flags={"read_only": True},
+ )
+ available_patch_summary.reboot_pending = AAZBoolType(
+ serialized_name="rebootPending",
+ flags={"read_only": True},
+ )
+ available_patch_summary.start_time = AAZStrType(
+ serialized_name="startTime",
+ flags={"read_only": True},
+ )
+ available_patch_summary.status = AAZStrType(
+ flags={"read_only": True},
+ )
+
+ configuration_statuses = cls._schema_on_200.properties.instance_view.patch_status.configuration_statuses
+ configuration_statuses.Element = AAZObjectType()
+ _ShowHelper._build_schema_instance_view_status_read(configuration_statuses.Element)
+
+ last_patch_installation_summary = cls._schema_on_200.properties.instance_view.patch_status.last_patch_installation_summary
+ last_patch_installation_summary.error = AAZObjectType(
+ flags={"read_only": True},
+ )
+ _ShowHelper._build_schema_api_error_read(last_patch_installation_summary.error)
+ last_patch_installation_summary.excluded_patch_count = AAZIntType(
+ serialized_name="excludedPatchCount",
+ flags={"read_only": True},
+ )
+ last_patch_installation_summary.failed_patch_count = AAZIntType(
+ serialized_name="failedPatchCount",
+ flags={"read_only": True},
+ )
+ last_patch_installation_summary.installation_activity_id = AAZStrType(
+ serialized_name="installationActivityId",
+ flags={"read_only": True},
+ )
+ last_patch_installation_summary.installed_patch_count = AAZIntType(
+ serialized_name="installedPatchCount",
+ flags={"read_only": True},
+ )
+ last_patch_installation_summary.last_modified_time = AAZStrType(
+ serialized_name="lastModifiedTime",
+ flags={"read_only": True},
+ )
+ last_patch_installation_summary.maintenance_window_exceeded = AAZBoolType(
+ serialized_name="maintenanceWindowExceeded",
+ flags={"read_only": True},
+ )
+ last_patch_installation_summary.not_selected_patch_count = AAZIntType(
+ serialized_name="notSelectedPatchCount",
+ flags={"read_only": True},
+ )
+ last_patch_installation_summary.pending_patch_count = AAZIntType(
+ serialized_name="pendingPatchCount",
+ flags={"read_only": True},
+ )
+ last_patch_installation_summary.start_time = AAZStrType(
+ serialized_name="startTime",
+ flags={"read_only": True},
+ )
+ last_patch_installation_summary.status = AAZStrType(
+ flags={"read_only": True},
+ )
+
+ statuses = cls._schema_on_200.properties.instance_view.statuses
+ statuses.Element = AAZObjectType()
+ _ShowHelper._build_schema_instance_view_status_read(statuses.Element)
+
+ vm_agent = cls._schema_on_200.properties.instance_view.vm_agent
+ vm_agent.extension_handlers = AAZListType(
+ serialized_name="extensionHandlers",
+ )
+ vm_agent.statuses = AAZListType()
+ vm_agent.vm_agent_version = AAZStrType(
+ serialized_name="vmAgentVersion",
+ )
+
+ extension_handlers = cls._schema_on_200.properties.instance_view.vm_agent.extension_handlers
+ extension_handlers.Element = AAZObjectType()
+
+ _element = cls._schema_on_200.properties.instance_view.vm_agent.extension_handlers.Element
+ _element.status = AAZObjectType()
+ _ShowHelper._build_schema_instance_view_status_read(_element.status)
+ _element.type = AAZStrType()
+ _element.type_handler_version = AAZStrType(
+ serialized_name="typeHandlerVersion",
+ )
+
+ statuses = cls._schema_on_200.properties.instance_view.vm_agent.statuses
+ statuses.Element = AAZObjectType()
+ _ShowHelper._build_schema_instance_view_status_read(statuses.Element)
+
+ vm_health = cls._schema_on_200.properties.instance_view.vm_health
+ vm_health.status = AAZObjectType(
+ flags={"read_only": True},
+ )
+ _ShowHelper._build_schema_instance_view_status_read(vm_health.status)
+
+ network_profile = cls._schema_on_200.properties.network_profile
+ network_profile.network_api_version = AAZStrType(
+ serialized_name="networkApiVersion",
+ )
+ network_profile.network_interface_configurations = AAZListType(
+ serialized_name="networkInterfaceConfigurations",
+ )
+ network_profile.network_interfaces = AAZListType(
+ serialized_name="networkInterfaces",
+ )
+
+ network_interface_configurations = cls._schema_on_200.properties.network_profile.network_interface_configurations
+ network_interface_configurations.Element = AAZObjectType()
+
+ _element = cls._schema_on_200.properties.network_profile.network_interface_configurations.Element
+ _element.name = AAZStrType(
+ flags={"required": True},
+ )
+ _element.properties = AAZObjectType(
+ flags={"client_flatten": True},
+ )
+
+ properties = cls._schema_on_200.properties.network_profile.network_interface_configurations.Element.properties
+ properties.auxiliary_mode = AAZStrType(
+ serialized_name="auxiliaryMode",
+ )
+ properties.auxiliary_sku = AAZStrType(
+ serialized_name="auxiliarySku",
+ )
+ properties.delete_option = AAZStrType(
+ serialized_name="deleteOption",
+ )
+ properties.disable_tcp_state_tracking = AAZBoolType(
+ serialized_name="disableTcpStateTracking",
+ )
+ properties.dns_settings = AAZObjectType(
+ serialized_name="dnsSettings",
+ )
+ properties.dscp_configuration = AAZObjectType(
+ serialized_name="dscpConfiguration",
+ )
+ _ShowHelper._build_schema_sub_resource_read(properties.dscp_configuration)
+ properties.enable_accelerated_networking = AAZBoolType(
+ serialized_name="enableAcceleratedNetworking",
+ )
+ properties.enable_fpga = AAZBoolType(
+ serialized_name="enableFpga",
+ )
+ properties.enable_ip_forwarding = AAZBoolType(
+ serialized_name="enableIPForwarding",
+ )
+ properties.ip_configurations = AAZListType(
+ serialized_name="ipConfigurations",
+ flags={"required": True},
+ )
+ properties.network_security_group = AAZObjectType(
+ serialized_name="networkSecurityGroup",
+ )
+ _ShowHelper._build_schema_sub_resource_read(properties.network_security_group)
+ properties.primary = AAZBoolType()
+
+ dns_settings = cls._schema_on_200.properties.network_profile.network_interface_configurations.Element.properties.dns_settings
+ dns_settings.dns_servers = AAZListType(
+ serialized_name="dnsServers",
+ )
+
+ dns_servers = cls._schema_on_200.properties.network_profile.network_interface_configurations.Element.properties.dns_settings.dns_servers
+ dns_servers.Element = AAZStrType()
+
+ ip_configurations = cls._schema_on_200.properties.network_profile.network_interface_configurations.Element.properties.ip_configurations
+ ip_configurations.Element = AAZObjectType()
+
+ _element = cls._schema_on_200.properties.network_profile.network_interface_configurations.Element.properties.ip_configurations.Element
+ _element.name = AAZStrType(
+ flags={"required": True},
+ )
+ _element.properties = AAZObjectType(
+ flags={"client_flatten": True},
+ )
+
+ properties = cls._schema_on_200.properties.network_profile.network_interface_configurations.Element.properties.ip_configurations.Element.properties
+ properties.application_gateway_backend_address_pools = AAZListType(
+ serialized_name="applicationGatewayBackendAddressPools",
+ )
+ properties.application_security_groups = AAZListType(
+ serialized_name="applicationSecurityGroups",
+ )
+ properties.load_balancer_backend_address_pools = AAZListType(
+ serialized_name="loadBalancerBackendAddressPools",
+ )
+ properties.primary = AAZBoolType()
+ properties.private_ip_address_version = AAZStrType(
+ serialized_name="privateIPAddressVersion",
+ )
+ properties.public_ip_address_configuration = AAZObjectType(
+ serialized_name="publicIPAddressConfiguration",
+ )
+ properties.subnet = AAZObjectType()
+ _ShowHelper._build_schema_sub_resource_read(properties.subnet)
+
+ application_gateway_backend_address_pools = cls._schema_on_200.properties.network_profile.network_interface_configurations.Element.properties.ip_configurations.Element.properties.application_gateway_backend_address_pools
+ application_gateway_backend_address_pools.Element = AAZObjectType()
+ _ShowHelper._build_schema_sub_resource_read(application_gateway_backend_address_pools.Element)
+
+ application_security_groups = cls._schema_on_200.properties.network_profile.network_interface_configurations.Element.properties.ip_configurations.Element.properties.application_security_groups
+ application_security_groups.Element = AAZObjectType()
+ _ShowHelper._build_schema_sub_resource_read(application_security_groups.Element)
+
+ load_balancer_backend_address_pools = cls._schema_on_200.properties.network_profile.network_interface_configurations.Element.properties.ip_configurations.Element.properties.load_balancer_backend_address_pools
+ load_balancer_backend_address_pools.Element = AAZObjectType()
+ _ShowHelper._build_schema_sub_resource_read(load_balancer_backend_address_pools.Element)
+
+ public_ip_address_configuration = cls._schema_on_200.properties.network_profile.network_interface_configurations.Element.properties.ip_configurations.Element.properties.public_ip_address_configuration
+ public_ip_address_configuration.name = AAZStrType(
+ flags={"required": True},
+ )
+ public_ip_address_configuration.properties = AAZObjectType(
+ flags={"client_flatten": True},
+ )
+ public_ip_address_configuration.sku = AAZObjectType()
+
+ properties = cls._schema_on_200.properties.network_profile.network_interface_configurations.Element.properties.ip_configurations.Element.properties.public_ip_address_configuration.properties
+ properties.delete_option = AAZStrType(
+ serialized_name="deleteOption",
+ )
+ properties.dns_settings = AAZObjectType(
+ serialized_name="dnsSettings",
+ )
+ properties.idle_timeout_in_minutes = AAZIntType(
+ serialized_name="idleTimeoutInMinutes",
+ )
+ properties.ip_tags = AAZListType(
+ serialized_name="ipTags",
+ )
+ properties.public_ip_address_version = AAZStrType(
+ serialized_name="publicIPAddressVersion",
+ )
+ properties.public_ip_allocation_method = AAZStrType(
+ serialized_name="publicIPAllocationMethod",
+ )
+ properties.public_ip_prefix = AAZObjectType(
+ serialized_name="publicIPPrefix",
+ )
+ _ShowHelper._build_schema_sub_resource_read(properties.public_ip_prefix)
+
+ dns_settings = cls._schema_on_200.properties.network_profile.network_interface_configurations.Element.properties.ip_configurations.Element.properties.public_ip_address_configuration.properties.dns_settings
+ dns_settings.domain_name_label = AAZStrType(
+ serialized_name="domainNameLabel",
+ flags={"required": True},
+ )
+ dns_settings.domain_name_label_scope = AAZStrType(
+ serialized_name="domainNameLabelScope",
+ )
+
+ ip_tags = cls._schema_on_200.properties.network_profile.network_interface_configurations.Element.properties.ip_configurations.Element.properties.public_ip_address_configuration.properties.ip_tags
+ ip_tags.Element = AAZObjectType()
+
+ _element = cls._schema_on_200.properties.network_profile.network_interface_configurations.Element.properties.ip_configurations.Element.properties.public_ip_address_configuration.properties.ip_tags.Element
+ _element.ip_tag_type = AAZStrType(
+ serialized_name="ipTagType",
+ )
+ _element.tag = AAZStrType()
+
+ sku = cls._schema_on_200.properties.network_profile.network_interface_configurations.Element.properties.ip_configurations.Element.properties.public_ip_address_configuration.sku
+ sku.name = AAZStrType()
+ sku.tier = AAZStrType()
+
+ network_interfaces = cls._schema_on_200.properties.network_profile.network_interfaces
+ network_interfaces.Element = AAZObjectType()
+
+ _element = cls._schema_on_200.properties.network_profile.network_interfaces.Element
+ _element.id = AAZStrType()
+ _element.properties = AAZObjectType(
+ flags={"client_flatten": True},
+ )
+
+ properties = cls._schema_on_200.properties.network_profile.network_interfaces.Element.properties
+ properties.delete_option = AAZStrType(
+ serialized_name="deleteOption",
+ )
+ properties.primary = AAZBoolType()
+
+ os_profile = cls._schema_on_200.properties.os_profile
+ os_profile.admin_password = AAZStrType(
+ serialized_name="adminPassword",
+ flags={"secret": True},
+ )
+ os_profile.admin_username = AAZStrType(
+ serialized_name="adminUsername",
+ )
+ os_profile.allow_extension_operations = AAZBoolType(
+ serialized_name="allowExtensionOperations",
+ )
+ os_profile.computer_name = AAZStrType(
+ serialized_name="computerName",
+ )
+ os_profile.custom_data = AAZStrType(
+ serialized_name="customData",
+ )
+ os_profile.linux_configuration = AAZObjectType(
+ serialized_name="linuxConfiguration",
+ )
+ os_profile.require_guest_provision_signal = AAZBoolType(
+ serialized_name="requireGuestProvisionSignal",
+ )
+ os_profile.secrets = AAZListType()
+ os_profile.windows_configuration = AAZObjectType(
+ serialized_name="windowsConfiguration",
+ )
+
+ linux_configuration = cls._schema_on_200.properties.os_profile.linux_configuration
+ linux_configuration.disable_password_authentication = AAZBoolType(
+ serialized_name="disablePasswordAuthentication",
+ )
+ linux_configuration.enable_vm_agent_platform_updates = AAZBoolType(
+ serialized_name="enableVMAgentPlatformUpdates",
+ )
+ linux_configuration.patch_settings = AAZObjectType(
+ serialized_name="patchSettings",
+ )
+ linux_configuration.provision_vm_agent = AAZBoolType(
+ serialized_name="provisionVMAgent",
+ )
+ linux_configuration.ssh = AAZObjectType()
+
+ patch_settings = cls._schema_on_200.properties.os_profile.linux_configuration.patch_settings
+ patch_settings.assessment_mode = AAZStrType(
+ serialized_name="assessmentMode",
+ )
+ patch_settings.automatic_by_platform_settings = AAZObjectType(
+ serialized_name="automaticByPlatformSettings",
+ )
+ patch_settings.patch_mode = AAZStrType(
+ serialized_name="patchMode",
+ )
+
+ automatic_by_platform_settings = cls._schema_on_200.properties.os_profile.linux_configuration.patch_settings.automatic_by_platform_settings
+ automatic_by_platform_settings.bypass_platform_safety_checks_on_user_schedule = AAZBoolType(
+ serialized_name="bypassPlatformSafetyChecksOnUserSchedule",
+ )
+ automatic_by_platform_settings.reboot_setting = AAZStrType(
+ serialized_name="rebootSetting",
+ )
+
+ ssh = cls._schema_on_200.properties.os_profile.linux_configuration.ssh
+ ssh.public_keys = AAZListType(
+ serialized_name="publicKeys",
+ )
+
+ public_keys = cls._schema_on_200.properties.os_profile.linux_configuration.ssh.public_keys
+ public_keys.Element = AAZObjectType()
+
+ _element = cls._schema_on_200.properties.os_profile.linux_configuration.ssh.public_keys.Element
+ _element.key_data = AAZStrType(
+ serialized_name="keyData",
+ )
+ _element.path = AAZStrType()
+
+ secrets = cls._schema_on_200.properties.os_profile.secrets
+ secrets.Element = AAZObjectType()
+
+ _element = cls._schema_on_200.properties.os_profile.secrets.Element
+ _element.source_vault = AAZObjectType(
+ serialized_name="sourceVault",
+ )
+ _ShowHelper._build_schema_sub_resource_read(_element.source_vault)
+ _element.vault_certificates = AAZListType(
+ serialized_name="vaultCertificates",
+ )
+
+ vault_certificates = cls._schema_on_200.properties.os_profile.secrets.Element.vault_certificates
+ vault_certificates.Element = AAZObjectType()
+
+ _element = cls._schema_on_200.properties.os_profile.secrets.Element.vault_certificates.Element
+ _element.certificate_store = AAZStrType(
+ serialized_name="certificateStore",
+ )
+ _element.certificate_url = AAZStrType(
+ serialized_name="certificateUrl",
+ )
+
+ windows_configuration = cls._schema_on_200.properties.os_profile.windows_configuration
+ windows_configuration.additional_unattend_content = AAZListType(
+ serialized_name="additionalUnattendContent",
+ )
+ windows_configuration.enable_automatic_updates = AAZBoolType(
+ serialized_name="enableAutomaticUpdates",
+ )
+ windows_configuration.enable_vm_agent_platform_updates = AAZBoolType(
+ serialized_name="enableVMAgentPlatformUpdates",
+ flags={"read_only": True},
+ )
+ windows_configuration.patch_settings = AAZObjectType(
+ serialized_name="patchSettings",
+ )
+ windows_configuration.provision_vm_agent = AAZBoolType(
+ serialized_name="provisionVMAgent",
+ )
+ windows_configuration.time_zone = AAZStrType(
+ serialized_name="timeZone",
+ )
+ windows_configuration.win_rm = AAZObjectType(
+ serialized_name="winRM",
+ )
+
+ additional_unattend_content = cls._schema_on_200.properties.os_profile.windows_configuration.additional_unattend_content
+ additional_unattend_content.Element = AAZObjectType()
+
+ _element = cls._schema_on_200.properties.os_profile.windows_configuration.additional_unattend_content.Element
+ _element.component_name = AAZStrType(
+ serialized_name="componentName",
+ )
+ _element.content = AAZStrType()
+ _element.pass_name = AAZStrType(
+ serialized_name="passName",
+ )
+ _element.setting_name = AAZStrType(
+ serialized_name="settingName",
+ )
+
+ patch_settings = cls._schema_on_200.properties.os_profile.windows_configuration.patch_settings
+ patch_settings.assessment_mode = AAZStrType(
+ serialized_name="assessmentMode",
+ )
+ patch_settings.automatic_by_platform_settings = AAZObjectType(
+ serialized_name="automaticByPlatformSettings",
+ )
+ patch_settings.enable_hotpatching = AAZBoolType(
+ serialized_name="enableHotpatching",
+ )
+ patch_settings.patch_mode = AAZStrType(
+ serialized_name="patchMode",
+ )
+
+ automatic_by_platform_settings = cls._schema_on_200.properties.os_profile.windows_configuration.patch_settings.automatic_by_platform_settings
+ automatic_by_platform_settings.bypass_platform_safety_checks_on_user_schedule = AAZBoolType(
+ serialized_name="bypassPlatformSafetyChecksOnUserSchedule",
+ )
+ automatic_by_platform_settings.reboot_setting = AAZStrType(
+ serialized_name="rebootSetting",
+ )
+
+ win_rm = cls._schema_on_200.properties.os_profile.windows_configuration.win_rm
+ win_rm.listeners = AAZListType()
+
+ listeners = cls._schema_on_200.properties.os_profile.windows_configuration.win_rm.listeners
+ listeners.Element = AAZObjectType()
+
+ _element = cls._schema_on_200.properties.os_profile.windows_configuration.win_rm.listeners.Element
+ _element.certificate_url = AAZStrType(
+ serialized_name="certificateUrl",
+ )
+ _element.protocol = AAZStrType()
+
+ scheduled_events_policy = cls._schema_on_200.properties.scheduled_events_policy
+ scheduled_events_policy.scheduled_events_additional_publishing_targets = AAZObjectType(
+ serialized_name="scheduledEventsAdditionalPublishingTargets",
+ )
+ scheduled_events_policy.user_initiated_reboot = AAZObjectType(
+ serialized_name="userInitiatedReboot",
+ )
+ scheduled_events_policy.user_initiated_redeploy = AAZObjectType(
+ serialized_name="userInitiatedRedeploy",
+ )
+
+ scheduled_events_additional_publishing_targets = cls._schema_on_200.properties.scheduled_events_policy.scheduled_events_additional_publishing_targets
+ scheduled_events_additional_publishing_targets.event_grid_and_resource_graph = AAZObjectType(
+ serialized_name="eventGridAndResourceGraph",
+ )
+
+ event_grid_and_resource_graph = cls._schema_on_200.properties.scheduled_events_policy.scheduled_events_additional_publishing_targets.event_grid_and_resource_graph
+ event_grid_and_resource_graph.enable = AAZBoolType()
+
+ user_initiated_reboot = cls._schema_on_200.properties.scheduled_events_policy.user_initiated_reboot
+ user_initiated_reboot.automatically_approve = AAZBoolType(
+ serialized_name="automaticallyApprove",
+ )
+
+ user_initiated_redeploy = cls._schema_on_200.properties.scheduled_events_policy.user_initiated_redeploy
+ user_initiated_redeploy.automatically_approve = AAZBoolType(
+ serialized_name="automaticallyApprove",
+ )
+
+ scheduled_events_profile = cls._schema_on_200.properties.scheduled_events_profile
+ scheduled_events_profile.os_image_notification_profile = AAZObjectType(
+ serialized_name="osImageNotificationProfile",
+ )
+ scheduled_events_profile.terminate_notification_profile = AAZObjectType(
+ serialized_name="terminateNotificationProfile",
+ )
+
+ os_image_notification_profile = cls._schema_on_200.properties.scheduled_events_profile.os_image_notification_profile
+ os_image_notification_profile.enable = AAZBoolType()
+ os_image_notification_profile.not_before_timeout = AAZStrType(
+ serialized_name="notBeforeTimeout",
+ )
+
+ terminate_notification_profile = cls._schema_on_200.properties.scheduled_events_profile.terminate_notification_profile
+ terminate_notification_profile.enable = AAZBoolType()
+ terminate_notification_profile.not_before_timeout = AAZStrType(
+ serialized_name="notBeforeTimeout",
+ )
+
+ security_profile = cls._schema_on_200.properties.security_profile
+ security_profile.encryption_at_host = AAZBoolType(
+ serialized_name="encryptionAtHost",
+ )
+ security_profile.encryption_identity = AAZObjectType(
+ serialized_name="encryptionIdentity",
+ )
+ security_profile.proxy_agent_settings = AAZObjectType(
+ serialized_name="proxyAgentSettings",
+ )
+ security_profile.security_type = AAZStrType(
+ serialized_name="securityType",
+ )
+ security_profile.uefi_settings = AAZObjectType(
+ serialized_name="uefiSettings",
+ )
+
+ encryption_identity = cls._schema_on_200.properties.security_profile.encryption_identity
+ encryption_identity.user_assigned_identity_resource_id = AAZStrType(
+ serialized_name="userAssignedIdentityResourceId",
+ )
+
+ proxy_agent_settings = cls._schema_on_200.properties.security_profile.proxy_agent_settings
+ proxy_agent_settings.enabled = AAZBoolType()
+ proxy_agent_settings.key_incarnation_id = AAZIntType(
+ serialized_name="keyIncarnationId",
+ )
+ proxy_agent_settings.mode = AAZStrType()
+
+ uefi_settings = cls._schema_on_200.properties.security_profile.uefi_settings
+ uefi_settings.secure_boot_enabled = AAZBoolType(
+ serialized_name="secureBootEnabled",
+ )
+ uefi_settings.v_tpm_enabled = AAZBoolType(
+ serialized_name="vTpmEnabled",
+ )
+
+ storage_profile = cls._schema_on_200.properties.storage_profile
+ storage_profile.data_disks = AAZListType(
+ serialized_name="dataDisks",
+ )
+ storage_profile.disk_controller_type = AAZStrType(
+ serialized_name="diskControllerType",
+ )
+ storage_profile.image_reference = AAZObjectType(
+ serialized_name="imageReference",
+ )
+ storage_profile.os_disk = AAZObjectType(
+ serialized_name="osDisk",
+ )
+
+ data_disks = cls._schema_on_200.properties.storage_profile.data_disks
+ data_disks.Element = AAZObjectType()
+
+ _element = cls._schema_on_200.properties.storage_profile.data_disks.Element
+ _element.caching = AAZStrType()
+ _element.create_option = AAZStrType(
+ serialized_name="createOption",
+ flags={"required": True},
+ )
+ _element.delete_option = AAZStrType(
+ serialized_name="deleteOption",
+ )
+ _element.detach_option = AAZStrType(
+ serialized_name="detachOption",
+ )
+ _element.disk_iops_read_write = AAZIntType(
+ serialized_name="diskIOPSReadWrite",
+ flags={"read_only": True},
+ )
+ _element.disk_m_bps_read_write = AAZIntType(
+ serialized_name="diskMBpsReadWrite",
+ flags={"read_only": True},
+ )
+ _element.disk_size_gb = AAZIntType(
+ serialized_name="diskSizeGB",
+ )
+ _element.image = AAZObjectType()
+ _ShowHelper._build_schema_virtual_hard_disk_read(_element.image)
+ _element.lun = AAZIntType(
+ flags={"required": True},
+ )
+ _element.managed_disk = AAZObjectType(
+ serialized_name="managedDisk",
+ )
+ _ShowHelper._build_schema_managed_disk_parameters_read(_element.managed_disk)
+ _element.name = AAZStrType()
+ _element.source_resource = AAZObjectType(
+ serialized_name="sourceResource",
+ )
+ _element.to_be_detached = AAZBoolType(
+ serialized_name="toBeDetached",
+ )
+ _element.vhd = AAZObjectType()
+ _ShowHelper._build_schema_virtual_hard_disk_read(_element.vhd)
+ _element.write_accelerator_enabled = AAZBoolType(
+ serialized_name="writeAcceleratorEnabled",
+ )
+
+ source_resource = cls._schema_on_200.properties.storage_profile.data_disks.Element.source_resource
+ source_resource.id = AAZStrType()
+
+ image_reference = cls._schema_on_200.properties.storage_profile.image_reference
+ image_reference.community_gallery_image_id = AAZStrType(
+ serialized_name="communityGalleryImageId",
+ )
+ image_reference.exact_version = AAZStrType(
+ serialized_name="exactVersion",
+ flags={"read_only": True},
+ )
+ image_reference.id = AAZStrType()
+ image_reference.offer = AAZStrType()
+ image_reference.publisher = AAZStrType()
+ image_reference.shared_gallery_image_id = AAZStrType(
+ serialized_name="sharedGalleryImageId",
+ )
+ image_reference.sku = AAZStrType()
+ image_reference.version = AAZStrType()
+
+ os_disk = cls._schema_on_200.properties.storage_profile.os_disk
+ os_disk.caching = AAZStrType()
+ os_disk.create_option = AAZStrType(
+ serialized_name="createOption",
+ flags={"required": True},
+ )
+ os_disk.delete_option = AAZStrType(
+ serialized_name="deleteOption",
+ )
+ os_disk.diff_disk_settings = AAZObjectType(
+ serialized_name="diffDiskSettings",
+ )
+ os_disk.disk_size_gb = AAZIntType(
+ serialized_name="diskSizeGB",
+ )
+ os_disk.encryption_settings = AAZObjectType(
+ serialized_name="encryptionSettings",
+ )
+ _ShowHelper._build_schema_disk_encryption_settings_read(os_disk.encryption_settings)
+ os_disk.image = AAZObjectType()
+ _ShowHelper._build_schema_virtual_hard_disk_read(os_disk.image)
+ os_disk.managed_disk = AAZObjectType(
+ serialized_name="managedDisk",
+ )
+ _ShowHelper._build_schema_managed_disk_parameters_read(os_disk.managed_disk)
+ os_disk.name = AAZStrType()
+ os_disk.os_type = AAZStrType(
+ serialized_name="osType",
+ )
+ os_disk.vhd = AAZObjectType()
+ _ShowHelper._build_schema_virtual_hard_disk_read(os_disk.vhd)
+ os_disk.write_accelerator_enabled = AAZBoolType(
+ serialized_name="writeAcceleratorEnabled",
+ )
+
+ diff_disk_settings = cls._schema_on_200.properties.storage_profile.os_disk.diff_disk_settings
+ diff_disk_settings.option = AAZStrType()
+ diff_disk_settings.placement = AAZStrType()
+
+ resources = cls._schema_on_200.resources
+ resources.Element = AAZObjectType()
+
+ _element = cls._schema_on_200.resources.Element
+ _element.id = AAZStrType(
+ flags={"read_only": True},
+ )
+ _element.location = AAZStrType()
+ _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.resources.Element.properties
+ properties.auto_upgrade_minor_version = AAZBoolType(
+ serialized_name="autoUpgradeMinorVersion",
+ )
+ properties.enable_automatic_upgrade = AAZBoolType(
+ serialized_name="enableAutomaticUpgrade",
+ )
+ properties.force_update_tag = AAZStrType(
+ serialized_name="forceUpdateTag",
+ )
+ properties.instance_view = AAZObjectType(
+ serialized_name="instanceView",
+ )
+ _ShowHelper._build_schema_virtual_machine_extension_instance_view_read(properties.instance_view)
+ properties.protected_settings = AAZFreeFormDictType(
+ serialized_name="protectedSettings",
+ )
+ properties.protected_settings_from_key_vault = AAZObjectType(
+ serialized_name="protectedSettingsFromKeyVault",
+ )
+ _ShowHelper._build_schema_key_vault_secret_reference_read(properties.protected_settings_from_key_vault)
+ properties.provision_after_extensions = AAZListType(
+ serialized_name="provisionAfterExtensions",
+ )
+ properties.provisioning_state = AAZStrType(
+ serialized_name="provisioningState",
+ flags={"read_only": True},
+ )
+ properties.publisher = AAZStrType()
+ properties.settings = AAZFreeFormDictType()
+ properties.suppress_failures = AAZBoolType(
+ serialized_name="suppressFailures",
+ )
+ properties.type = AAZStrType()
+ properties.type_handler_version = AAZStrType(
+ serialized_name="typeHandlerVersion",
+ )
+
+ provision_after_extensions = cls._schema_on_200.resources.Element.properties.provision_after_extensions
+ provision_after_extensions.Element = AAZStrType()
+
+ tags = cls._schema_on_200.resources.Element.tags
+ tags.Element = AAZStrType()
+
+ tags = cls._schema_on_200.tags
+ tags.Element = AAZStrType()
+
+ zones = cls._schema_on_200.zones
+ zones.Element = AAZStrType()
+
+ return cls._schema_on_200
+
+
+class _ShowHelper:
+ """Helper class for Show"""
+
+ _schema_api_error_read = None
+
+ @classmethod
+ def _build_schema_api_error_read(cls, _schema):
+ if cls._schema_api_error_read is not None:
+ _schema.code = cls._schema_api_error_read.code
+ _schema.details = cls._schema_api_error_read.details
+ _schema.innererror = cls._schema_api_error_read.innererror
+ _schema.message = cls._schema_api_error_read.message
+ _schema.target = cls._schema_api_error_read.target
+ return
+
+ cls._schema_api_error_read = _schema_api_error_read = AAZObjectType(
+ flags={"read_only": True}
+ )
+
+ api_error_read = _schema_api_error_read
+ api_error_read.code = AAZStrType()
+ api_error_read.details = AAZListType()
+ api_error_read.innererror = AAZObjectType()
+ api_error_read.message = AAZStrType()
+ api_error_read.target = AAZStrType()
+
+ details = _schema_api_error_read.details
+ details.Element = AAZObjectType()
+
+ _element = _schema_api_error_read.details.Element
+ _element.code = AAZStrType()
+ _element.message = AAZStrType()
+ _element.target = AAZStrType()
+
+ innererror = _schema_api_error_read.innererror
+ innererror.errordetail = AAZStrType()
+ innererror.exceptiontype = AAZStrType()
+
+ _schema.code = cls._schema_api_error_read.code
+ _schema.details = cls._schema_api_error_read.details
+ _schema.innererror = cls._schema_api_error_read.innererror
+ _schema.message = cls._schema_api_error_read.message
+ _schema.target = cls._schema_api_error_read.target
+
+ _schema_disk_encryption_set_parameters_read = None
+
+ @classmethod
+ def _build_schema_disk_encryption_set_parameters_read(cls, _schema):
+ if cls._schema_disk_encryption_set_parameters_read is not None:
+ _schema.id = cls._schema_disk_encryption_set_parameters_read.id
+ return
+
+ cls._schema_disk_encryption_set_parameters_read = _schema_disk_encryption_set_parameters_read = AAZObjectType()
+
+ disk_encryption_set_parameters_read = _schema_disk_encryption_set_parameters_read
+ disk_encryption_set_parameters_read.id = AAZStrType()
+
+ _schema.id = cls._schema_disk_encryption_set_parameters_read.id
+
+ _schema_disk_encryption_settings_read = None
+
+ @classmethod
+ def _build_schema_disk_encryption_settings_read(cls, _schema):
+ if cls._schema_disk_encryption_settings_read is not None:
+ _schema.disk_encryption_key = cls._schema_disk_encryption_settings_read.disk_encryption_key
+ _schema.enabled = cls._schema_disk_encryption_settings_read.enabled
+ _schema.key_encryption_key = cls._schema_disk_encryption_settings_read.key_encryption_key
+ return
+
+ cls._schema_disk_encryption_settings_read = _schema_disk_encryption_settings_read = AAZObjectType()
+
+ disk_encryption_settings_read = _schema_disk_encryption_settings_read
+ disk_encryption_settings_read.disk_encryption_key = AAZObjectType(
+ serialized_name="diskEncryptionKey",
+ )
+ cls._build_schema_key_vault_secret_reference_read(disk_encryption_settings_read.disk_encryption_key)
+ disk_encryption_settings_read.enabled = AAZBoolType()
+ disk_encryption_settings_read.key_encryption_key = AAZObjectType(
+ serialized_name="keyEncryptionKey",
+ )
+
+ key_encryption_key = _schema_disk_encryption_settings_read.key_encryption_key
+ key_encryption_key.key_url = AAZStrType(
+ serialized_name="keyUrl",
+ flags={"required": True},
+ )
+ key_encryption_key.source_vault = AAZObjectType(
+ serialized_name="sourceVault",
+ flags={"required": True},
+ )
+ cls._build_schema_sub_resource_read(key_encryption_key.source_vault)
+
+ _schema.disk_encryption_key = cls._schema_disk_encryption_settings_read.disk_encryption_key
+ _schema.enabled = cls._schema_disk_encryption_settings_read.enabled
+ _schema.key_encryption_key = cls._schema_disk_encryption_settings_read.key_encryption_key
+
+ _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_key_vault_secret_reference_read = None
+
+ @classmethod
+ def _build_schema_key_vault_secret_reference_read(cls, _schema):
+ if cls._schema_key_vault_secret_reference_read is not None:
+ _schema.secret_url = cls._schema_key_vault_secret_reference_read.secret_url
+ _schema.source_vault = cls._schema_key_vault_secret_reference_read.source_vault
+ return
+
+ cls._schema_key_vault_secret_reference_read = _schema_key_vault_secret_reference_read = AAZObjectType()
+
+ key_vault_secret_reference_read = _schema_key_vault_secret_reference_read
+ key_vault_secret_reference_read.secret_url = AAZStrType(
+ serialized_name="secretUrl",
+ flags={"required": True},
+ )
+ key_vault_secret_reference_read.source_vault = AAZObjectType(
+ serialized_name="sourceVault",
+ flags={"required": True},
+ )
+ cls._build_schema_sub_resource_read(key_vault_secret_reference_read.source_vault)
+
+ _schema.secret_url = cls._schema_key_vault_secret_reference_read.secret_url
+ _schema.source_vault = cls._schema_key_vault_secret_reference_read.source_vault
+
+ _schema_managed_disk_parameters_read = None
+
+ @classmethod
+ def _build_schema_managed_disk_parameters_read(cls, _schema):
+ if cls._schema_managed_disk_parameters_read is not None:
+ _schema.disk_encryption_set = cls._schema_managed_disk_parameters_read.disk_encryption_set
+ _schema.id = cls._schema_managed_disk_parameters_read.id
+ _schema.security_profile = cls._schema_managed_disk_parameters_read.security_profile
+ _schema.storage_account_type = cls._schema_managed_disk_parameters_read.storage_account_type
+ return
+
+ cls._schema_managed_disk_parameters_read = _schema_managed_disk_parameters_read = AAZObjectType()
+
+ managed_disk_parameters_read = _schema_managed_disk_parameters_read
+ managed_disk_parameters_read.disk_encryption_set = AAZObjectType(
+ serialized_name="diskEncryptionSet",
+ )
+ cls._build_schema_disk_encryption_set_parameters_read(managed_disk_parameters_read.disk_encryption_set)
+ managed_disk_parameters_read.id = AAZStrType()
+ managed_disk_parameters_read.security_profile = AAZObjectType(
+ serialized_name="securityProfile",
+ )
+ managed_disk_parameters_read.storage_account_type = AAZStrType(
+ serialized_name="storageAccountType",
+ )
+
+ security_profile = _schema_managed_disk_parameters_read.security_profile
+ security_profile.disk_encryption_set = AAZObjectType(
+ serialized_name="diskEncryptionSet",
+ )
+ cls._build_schema_disk_encryption_set_parameters_read(security_profile.disk_encryption_set)
+ security_profile.security_encryption_type = AAZStrType(
+ serialized_name="securityEncryptionType",
+ )
+
+ _schema.disk_encryption_set = cls._schema_managed_disk_parameters_read.disk_encryption_set
+ _schema.id = cls._schema_managed_disk_parameters_read.id
+ _schema.security_profile = cls._schema_managed_disk_parameters_read.security_profile
+ _schema.storage_account_type = cls._schema_managed_disk_parameters_read.storage_account_type
+
+ _schema_sub_resource_read = None
+
+ @classmethod
+ def _build_schema_sub_resource_read(cls, _schema):
+ if cls._schema_sub_resource_read is not None:
+ _schema.id = cls._schema_sub_resource_read.id
+ return
+
+ cls._schema_sub_resource_read = _schema_sub_resource_read = AAZObjectType()
+
+ sub_resource_read = _schema_sub_resource_read
+ sub_resource_read.id = AAZStrType()
+
+ _schema.id = cls._schema_sub_resource_read.id
+
+ _schema_virtual_hard_disk_read = None
+
+ @classmethod
+ def _build_schema_virtual_hard_disk_read(cls, _schema):
+ if cls._schema_virtual_hard_disk_read is not None:
+ _schema.uri = cls._schema_virtual_hard_disk_read.uri
+ return
+
+ cls._schema_virtual_hard_disk_read = _schema_virtual_hard_disk_read = AAZObjectType()
+
+ virtual_hard_disk_read = _schema_virtual_hard_disk_read
+ virtual_hard_disk_read.uri = AAZStrType()
+
+ _schema.uri = cls._schema_virtual_hard_disk_read.uri
+
+ _schema_virtual_machine_extension_instance_view_read = None
+
+ @classmethod
+ def _build_schema_virtual_machine_extension_instance_view_read(cls, _schema):
+ if cls._schema_virtual_machine_extension_instance_view_read is not None:
+ _schema.name = cls._schema_virtual_machine_extension_instance_view_read.name
+ _schema.statuses = cls._schema_virtual_machine_extension_instance_view_read.statuses
+ _schema.substatuses = cls._schema_virtual_machine_extension_instance_view_read.substatuses
+ _schema.type = cls._schema_virtual_machine_extension_instance_view_read.type
+ _schema.type_handler_version = cls._schema_virtual_machine_extension_instance_view_read.type_handler_version
+ return
+
+ cls._schema_virtual_machine_extension_instance_view_read = _schema_virtual_machine_extension_instance_view_read = AAZObjectType()
+
+ virtual_machine_extension_instance_view_read = _schema_virtual_machine_extension_instance_view_read
+ virtual_machine_extension_instance_view_read.name = AAZStrType()
+ virtual_machine_extension_instance_view_read.statuses = AAZListType()
+ virtual_machine_extension_instance_view_read.substatuses = AAZListType()
+ virtual_machine_extension_instance_view_read.type = AAZStrType()
+ virtual_machine_extension_instance_view_read.type_handler_version = AAZStrType(
+ serialized_name="typeHandlerVersion",
+ )
+
+ statuses = _schema_virtual_machine_extension_instance_view_read.statuses
+ statuses.Element = AAZObjectType()
+ cls._build_schema_instance_view_status_read(statuses.Element)
+
+ substatuses = _schema_virtual_machine_extension_instance_view_read.substatuses
+ substatuses.Element = AAZObjectType()
+ cls._build_schema_instance_view_status_read(substatuses.Element)
+
+ _schema.name = cls._schema_virtual_machine_extension_instance_view_read.name
+ _schema.statuses = cls._schema_virtual_machine_extension_instance_view_read.statuses
+ _schema.substatuses = cls._schema_virtual_machine_extension_instance_view_read.substatuses
+ _schema.type = cls._schema_virtual_machine_extension_instance_view_read.type
+ _schema.type_handler_version = cls._schema_virtual_machine_extension_instance_view_read.type_handler_version
+
+
+__all__ = ["Show"]
diff --git a/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/vm/_update.py b/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/vm/_update.py
new file mode 100644
index 00000000000..8ea0e717e39
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/vm/aaz/latest/vm/_update.py
@@ -0,0 +1,3638 @@
+# --------------------------------------------------------------------------------------------
+# 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 *
+
+
+class Update(AAZCommand):
+ """Update operation to create or update a virtual machine. Please note some properties can be set only during virtual machine creation.
+ """
+
+ _aaz_info = {
+ "version": "2024-07-01",
+ "resources": [
+ ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.compute/virtualmachines/{}", "2024-07-01"],
+ ]
+ }
+
+ AZ_SUPPORT_NO_WAIT = True
+
+ AZ_SUPPORT_GENERIC_UPDATE = True
+
+ def _handler(self, command_args):
+ super()._handler(command_args)
+ return self.build_lro_poller(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.if_match = AAZStrArg(
+ options=["--if-match"],
+ help="The ETag of the transformation. Omit this value to always overwrite the current resource. Specify the last-seen ETag value to prevent accidentally overwriting concurrent changes.",
+ )
+ _args_schema.if_none_match = AAZStrArg(
+ options=["--if-none-match"],
+ help="Set to '*' to allow a new record set to be created, but to prevent updating an existing record set. Other values will result in error from server as they are not supported.",
+ )
+ _args_schema.resource_group = AAZResourceGroupNameArg(
+ required=True,
+ )
+ _args_schema.vm_name = AAZStrArg(
+ options=["-n", "--name", "--vm-name"],
+ help="The name of the virtual machine.",
+ required=True,
+ id_part="name",
+ )
+
+ # define Arg Group "Identity"
+
+ # define Arg Group "Parameters"
+
+ _args_schema = cls._args_schema
+ _args_schema.extended_location = AAZObjectArg(
+ options=["--extended-location"],
+ arg_group="Parameters",
+ help="The extended location of the Virtual Machine.",
+ nullable=True,
+ )
+ _args_schema.location = AAZResourceLocationArg(
+ arg_group="Parameters",
+ help="Resource location",
+ fmt=AAZResourceLocationArgFormat(
+ resource_group_arg="resource_group",
+ ),
+ )
+ _args_schema.plan = AAZObjectArg(
+ options=["--plan"],
+ arg_group="Parameters",
+ help="Specifies information about the marketplace image used to create the virtual machine. This element is only used for marketplace images. Before you can use a marketplace image from an API, you must enable the image for programmatic use. In the Azure portal, find the marketplace image that you want to use and then click **Want to deploy programmatically, Get Started ->**. Enter any required information and then click **Save**.",
+ nullable=True,
+ )
+ _args_schema.tags = AAZDictArg(
+ options=["--tags"],
+ arg_group="Parameters",
+ help="Resource tags",
+ nullable=True,
+ )
+ _args_schema.zones = AAZListArg(
+ options=["--zones"],
+ arg_group="Parameters",
+ help="The virtual machine zones.",
+ nullable=True,
+ )
+
+ extended_location = cls._args_schema.extended_location
+ extended_location.name = AAZStrArg(
+ options=["name"],
+ help="The name of the extended location.",
+ nullable=True,
+ )
+ extended_location.type = AAZStrArg(
+ options=["type"],
+ help="The type of the extended location.",
+ nullable=True,
+ enum={"EdgeZone": "EdgeZone"},
+ )
+
+ plan = cls._args_schema.plan
+ plan.name = AAZStrArg(
+ options=["name"],
+ help="The plan ID.",
+ nullable=True,
+ )
+ plan.product = AAZStrArg(
+ options=["product"],
+ help="Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.",
+ nullable=True,
+ )
+ plan.promotion_code = AAZStrArg(
+ options=["promotion-code"],
+ help="The promotion code.",
+ nullable=True,
+ )
+ plan.publisher = AAZStrArg(
+ options=["publisher"],
+ help="The publisher ID.",
+ nullable=True,
+ )
+
+ tags = cls._args_schema.tags
+ tags.Element = AAZStrArg(
+ nullable=True,
+ )
+
+ zones = cls._args_schema.zones
+ zones.Element = AAZStrArg(
+ nullable=True,
+ )
+
+ # define Arg Group "Properties"
+
+ _args_schema = cls._args_schema
+ _args_schema.additional_capabilities = AAZObjectArg(
+ options=["--additional-capabilities"],
+ arg_group="Properties",
+ help="Specifies additional capabilities enabled or disabled on the virtual machine.",
+ nullable=True,
+ )
+ _args_schema.application_profile = AAZObjectArg(
+ options=["--application-profile"],
+ arg_group="Properties",
+ help="Specifies the gallery applications that should be made available to the VM/VMSS.",
+ nullable=True,
+ )
+ _args_schema.availability_set = AAZObjectArg(
+ options=["--availability-set"],
+ arg_group="Properties",
+ help="Specifies information about the availability set that the virtual machine should be assigned to. Virtual machines specified in the same availability set are allocated to different nodes to maximize availability. For more information about availability sets, see [Availability sets overview](https://docs.microsoft.com/azure/virtual-machines/availability-set-overview). For more information on Azure planned maintenance, see [Maintenance and updates for Virtual Machines in Azure](https://docs.microsoft.com/azure/virtual-machines/maintenance-and-updates). Currently, a VM can only be added to availability set at creation time. The availability set to which the VM is being added should be under the same resource group as the availability set resource. An existing VM cannot be added to an availability set. This property cannot exist along with a non-null properties.virtualMachineScaleSet reference.",
+ )
+ cls._build_args_sub_resource_update(_args_schema.availability_set)
+ _args_schema.billing_profile = AAZObjectArg(
+ options=["--billing-profile"],
+ arg_group="Properties",
+ help="Specifies the billing related details of a Azure Spot virtual machine. Minimum api-version: 2019-03-01.",
+ nullable=True,
+ )
+ _args_schema.capacity_reservation = AAZObjectArg(
+ options=["--capacity-reservation"],
+ arg_group="Properties",
+ help="Specifies information about the capacity reservation that is used to allocate virtual machine. Minimum api-version: 2021-04-01.",
+ nullable=True,
+ )
+ _args_schema.diagnostics_profile = AAZObjectArg(
+ options=["--diagnostics-profile"],
+ arg_group="Properties",
+ help="Specifies the boot diagnostic settings state. Minimum api-version: 2015-06-15.",
+ nullable=True,
+ )
+ _args_schema.eviction_policy = AAZStrArg(
+ options=["--eviction-policy"],
+ arg_group="Properties",
+ help="Specifies the eviction policy for the Azure Spot virtual machine and Azure Spot scale set. For Azure Spot virtual machines, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2019-03-01. For Azure Spot scale sets, both 'Deallocate' and 'Delete' are supported and the minimum api-version is 2017-10-30-preview.",
+ nullable=True,
+ enum={"Deallocate": "Deallocate", "Delete": "Delete"},
+ )
+ _args_schema.extensions_time_budget = AAZStrArg(
+ options=["--extensions-time-budget"],
+ arg_group="Properties",
+ help="Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01.",
+ nullable=True,
+ )
+ _args_schema.hardware_profile = AAZObjectArg(
+ options=["--hardware-profile"],
+ arg_group="Properties",
+ help="Specifies the hardware settings for the virtual machine.",
+ nullable=True,
+ )
+ _args_schema.host = AAZObjectArg(
+ options=["--host"],
+ arg_group="Properties",
+ help="Specifies information about the dedicated host that the virtual machine resides in. Minimum api-version: 2018-10-01.",
+ )
+ cls._build_args_sub_resource_update(_args_schema.host)
+ _args_schema.host_group = AAZObjectArg(
+ options=["--host-group"],
+ arg_group="Properties",
+ help="Specifies information about the dedicated host group that the virtual machine resides in. **Note:** User cannot specify both host and hostGroup properties. Minimum api-version: 2020-06-01.",
+ )
+ cls._build_args_sub_resource_update(_args_schema.host_group)
+ _args_schema.license_type = AAZStrArg(
+ options=["--license-type"],
+ arg_group="Properties",
+ help="Specifies that the image or disk that is being used was licensed on-premises. Possible values for Windows Server operating system are: Windows_Client Windows_Server Possible values for Linux Server operating system are: RHEL_BYOS (for RHEL) SLES_BYOS (for SUSE) For more information, see [Azure Hybrid Use Benefit for Windows Server](https://docs.microsoft.com/azure/virtual-machines/windows/hybrid-use-benefit-licensing) [Azure Hybrid Use Benefit for Linux Server](https://docs.microsoft.com/azure/virtual-machines/linux/azure-hybrid-benefit-linux) Minimum api-version: 2015-06-15",
+ nullable=True,
+ )
+ _args_schema.network_profile = AAZObjectArg(
+ options=["--network-profile"],
+ arg_group="Properties",
+ help="Specifies the network interfaces of the virtual machine.",
+ nullable=True,
+ )
+ _args_schema.os_profile = AAZObjectArg(
+ options=["--os-profile"],
+ arg_group="Properties",
+ help="Specifies the operating system settings used while creating the virtual machine. Some of the settings cannot be changed once VM is provisioned.",
+ nullable=True,
+ )
+ _args_schema.platform_fault_domain = AAZIntArg(
+ options=["--platform-fault-domain"],
+ arg_group="Properties",
+ help="Specifies the scale set logical fault domain into which the Virtual Machine will be created. By default, the Virtual Machine will by automatically assigned to a fault domain that best maintains balance across available fault domains. This is applicable only if the 'virtualMachineScaleSet' property of this Virtual Machine is set. The Virtual Machine Scale Set that is referenced, must have 'platformFaultDomainCount' greater than 1. This property cannot be updated once the Virtual Machine is created. Fault domain assignment can be viewed in the Virtual Machine Instance View. Minimum api-version: 2020-12-01.",
+ nullable=True,
+ )
+ _args_schema.priority = AAZStrArg(
+ options=["--priority"],
+ arg_group="Properties",
+ help="Specifies the priority for the virtual machine. Minimum api-version: 2019-03-01",
+ nullable=True,
+ enum={"Low": "Low", "Regular": "Regular", "Spot": "Spot"},
+ )
+ _args_schema.proximity_placement_group = AAZObjectArg(
+ options=["--proximity-placement-group"],
+ arg_group="Properties",
+ help="Specifies information about the proximity placement group that the virtual machine should be assigned to. Minimum api-version: 2018-04-01.",
+ )
+ cls._build_args_sub_resource_update(_args_schema.proximity_placement_group)
+ _args_schema.scheduled_events_policy = AAZObjectArg(
+ options=["--scheduled-events-policy"],
+ arg_group="Properties",
+ help="Specifies Redeploy, Reboot and ScheduledEventsAdditionalPublishingTargets Scheduled Event related configurations for the virtual machine.",
+ nullable=True,
+ )
+ _args_schema.scheduled_events_profile = AAZObjectArg(
+ options=["--scheduled-events-profile"],
+ arg_group="Properties",
+ help="Specifies Scheduled Event related configurations.",
+ nullable=True,
+ )
+ _args_schema.security_profile = AAZObjectArg(
+ options=["--security-profile"],
+ arg_group="Properties",
+ help="Specifies the Security related profile settings for the virtual machine.",
+ nullable=True,
+ )
+ _args_schema.storage_profile = AAZObjectArg(
+ options=["--storage-profile"],
+ arg_group="Properties",
+ help="Specifies the storage settings for the virtual machine disks.",
+ nullable=True,
+ )
+ _args_schema.user_data = AAZStrArg(
+ options=["--user-data"],
+ arg_group="Properties",
+ help="UserData for the VM, which must be base-64 encoded. Customer should not pass any secrets in here. Minimum api-version: 2021-03-01.",
+ nullable=True,
+ )
+ _args_schema.virtual_machine_scale_set = AAZObjectArg(
+ options=["--virtual-machine-scale-set"],
+ arg_group="Properties",
+ help="Specifies information about the virtual machine scale set that the virtual machine should be assigned to. Virtual machines specified in the same virtual machine scale set are allocated to different nodes to maximize availability. Currently, a VM can only be added to virtual machine scale set at creation time. An existing VM cannot be added to a virtual machine scale set. This property cannot exist along with a non-null properties.availabilitySet reference. Minimum api-version: 2019-03-01.",
+ )
+ cls._build_args_sub_resource_update(_args_schema.virtual_machine_scale_set)
+
+ additional_capabilities = cls._args_schema.additional_capabilities
+ additional_capabilities.hibernation_enabled = AAZBoolArg(
+ options=["hibernation-enabled"],
+ help="The flag that enables or disables hibernation capability on the VM.",
+ nullable=True,
+ )
+ additional_capabilities.ultra_ssd_enabled = AAZBoolArg(
+ options=["ultra-ssd-enabled"],
+ help="The flag that enables or disables a capability to have one or more managed data disks with UltraSSD_LRS storage account type on the VM or VMSS. Managed disks with storage account type UltraSSD_LRS can be added to a virtual machine or virtual machine scale set only if this property is enabled.",
+ nullable=True,
+ )
+
+ application_profile = cls._args_schema.application_profile
+ application_profile.gallery_applications = AAZListArg(
+ options=["gallery-applications"],
+ help="Specifies the gallery applications that should be made available to the VM/VMSS",
+ nullable=True,
+ )
+
+ gallery_applications = cls._args_schema.application_profile.gallery_applications
+ gallery_applications.Element = AAZObjectArg(
+ nullable=True,
+ )
+
+ _element = cls._args_schema.application_profile.gallery_applications.Element
+ _element.configuration_reference = AAZStrArg(
+ options=["configuration-reference"],
+ help="Optional, Specifies the uri to an azure blob that will replace the default configuration for the package if provided",
+ nullable=True,
+ )
+ _element.enable_automatic_upgrade = AAZBoolArg(
+ options=["enable-automatic-upgrade"],
+ help="If set to true, when a new Gallery Application version is available in PIR/SIG, it will be automatically updated for the VM/VMSS",
+ nullable=True,
+ )
+ _element.order = AAZIntArg(
+ options=["order"],
+ help="Optional, Specifies the order in which the packages have to be installed",
+ nullable=True,
+ )
+ _element.package_reference_id = AAZStrArg(
+ options=["package-reference-id"],
+ help="Specifies the GalleryApplicationVersion resource id on the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{application}/versions/{version}",
+ )
+ _element.tags = AAZStrArg(
+ options=["tags"],
+ help="Optional, Specifies a passthrough value for more generic context.",
+ nullable=True,
+ )
+ _element.treat_failure_as_deployment_failure = AAZBoolArg(
+ options=["treat-failure-as-deployment-failure"],
+ help="Optional, If true, any failure for any operation in the VmApplication will fail the deployment",
+ nullable=True,
+ )
+
+ billing_profile = cls._args_schema.billing_profile
+ billing_profile.max_price = AAZFloatArg(
+ options=["max-price"],
+ help="Specifies the maximum price you are willing to pay for a Azure Spot VM/VMSS. This price is in US Dollars.
This price will be compared with the current Azure Spot price for the VM size. Also, the prices are compared at the time of create/update of Azure Spot VM/VMSS and the operation will only succeed if the maxPrice is greater than the current Azure Spot price.
The maxPrice will also be used for evicting a Azure Spot VM/VMSS if the current Azure Spot price goes beyond the maxPrice after creation of VM/VMSS.
Possible values are:
- Any decimal value greater than zero. Example: 0.01538
-1 – indicates default price to be up-to on-demand.
You can set the maxPrice to -1 to indicate that the Azure Spot VM/VMSS should not be evicted for price reasons. Also, the default max price is -1 if it is not provided by you.
Minimum api-version: 2019-03-01.",
+ nullable=True,
+ )
+
+ capacity_reservation = cls._args_schema.capacity_reservation
+ capacity_reservation.capacity_reservation_group = AAZObjectArg(
+ options=["capacity-reservation-group"],
+ help="Specifies the capacity reservation group resource id that should be used for allocating the virtual machine or scaleset vm instances provided enough capacity has been reserved. Please refer to https://aka.ms/CapacityReservation for more details.",
+ )
+ cls._build_args_sub_resource_update(capacity_reservation.capacity_reservation_group)
+
+ diagnostics_profile = cls._args_schema.diagnostics_profile
+ diagnostics_profile.boot_diagnostics = AAZObjectArg(
+ options=["boot-diagnostics"],
+ help="Boot Diagnostics is a debugging feature which allows you to view Console Output and Screenshot to diagnose VM status. **NOTE**: If storageUri is being specified then ensure that the storage account is in the same region and subscription as the VM. You can easily view the output of your console log. Azure also enables you to see a screenshot of the VM from the hypervisor.",
+ nullable=True,
+ )
+
+ boot_diagnostics = cls._args_schema.diagnostics_profile.boot_diagnostics
+ boot_diagnostics.enabled = AAZBoolArg(
+ options=["enabled"],
+ help="Whether boot diagnostics should be enabled on the Virtual Machine.",
+ nullable=True,
+ )
+ boot_diagnostics.storage_uri = AAZStrArg(
+ options=["storage-uri"],
+ help="Uri of the storage account to use for placing the console output and screenshot. If storageUri is not specified while enabling boot diagnostics, managed storage will be used.",
+ nullable=True,
+ )
+
+ hardware_profile = cls._args_schema.hardware_profile
+ hardware_profile.vm_size = AAZStrArg(
+ options=["vm-size"],
+ help="Specifies the size of the virtual machine. The enum data type is currently deprecated and will be removed by December 23rd 2023. The recommended way to get the list of available sizes is using these APIs: [List all available virtual machine sizes in an availability set](https://docs.microsoft.com/rest/api/compute/availabilitysets/listavailablesizes), [List all available virtual machine sizes in a region]( https://docs.microsoft.com/rest/api/compute/resourceskus/list), [List all available virtual machine sizes for resizing](https://docs.microsoft.com/rest/api/compute/virtualmachines/listavailablesizes). For more information about virtual machine sizes, see [Sizes for virtual machines](https://docs.microsoft.com/azure/virtual-machines/sizes). The available VM sizes depend on region and availability set.",
+ nullable=True,
+ enum={"Basic_A0": "Basic_A0", "Basic_A1": "Basic_A1", "Basic_A2": "Basic_A2", "Basic_A3": "Basic_A3", "Basic_A4": "Basic_A4", "Standard_A0": "Standard_A0", "Standard_A1": "Standard_A1", "Standard_A10": "Standard_A10", "Standard_A11": "Standard_A11", "Standard_A1_v2": "Standard_A1_v2", "Standard_A2": "Standard_A2", "Standard_A2_v2": "Standard_A2_v2", "Standard_A2m_v2": "Standard_A2m_v2", "Standard_A3": "Standard_A3", "Standard_A4": "Standard_A4", "Standard_A4_v2": "Standard_A4_v2", "Standard_A4m_v2": "Standard_A4m_v2", "Standard_A5": "Standard_A5", "Standard_A6": "Standard_A6", "Standard_A7": "Standard_A7", "Standard_A8": "Standard_A8", "Standard_A8_v2": "Standard_A8_v2", "Standard_A8m_v2": "Standard_A8m_v2", "Standard_A9": "Standard_A9", "Standard_B1ms": "Standard_B1ms", "Standard_B1s": "Standard_B1s", "Standard_B2ms": "Standard_B2ms", "Standard_B2s": "Standard_B2s", "Standard_B4ms": "Standard_B4ms", "Standard_B8ms": "Standard_B8ms", "Standard_D1": "Standard_D1", "Standard_D11": "Standard_D11", "Standard_D11_v2": "Standard_D11_v2", "Standard_D12": "Standard_D12", "Standard_D12_v2": "Standard_D12_v2", "Standard_D13": "Standard_D13", "Standard_D13_v2": "Standard_D13_v2", "Standard_D14": "Standard_D14", "Standard_D14_v2": "Standard_D14_v2", "Standard_D15_v2": "Standard_D15_v2", "Standard_D16_v3": "Standard_D16_v3", "Standard_D16s_v3": "Standard_D16s_v3", "Standard_D1_v2": "Standard_D1_v2", "Standard_D2": "Standard_D2", "Standard_D2_v2": "Standard_D2_v2", "Standard_D2_v3": "Standard_D2_v3", "Standard_D2s_v3": "Standard_D2s_v3", "Standard_D3": "Standard_D3", "Standard_D32_v3": "Standard_D32_v3", "Standard_D32s_v3": "Standard_D32s_v3", "Standard_D3_v2": "Standard_D3_v2", "Standard_D4": "Standard_D4", "Standard_D4_v2": "Standard_D4_v2", "Standard_D4_v3": "Standard_D4_v3", "Standard_D4s_v3": "Standard_D4s_v3", "Standard_D5_v2": "Standard_D5_v2", "Standard_D64_v3": "Standard_D64_v3", "Standard_D64s_v3": "Standard_D64s_v3", "Standard_D8_v3": "Standard_D8_v3", "Standard_D8s_v3": "Standard_D8s_v3", "Standard_DS1": "Standard_DS1", "Standard_DS11": "Standard_DS11", "Standard_DS11_v2": "Standard_DS11_v2", "Standard_DS12": "Standard_DS12", "Standard_DS12_v2": "Standard_DS12_v2", "Standard_DS13": "Standard_DS13", "Standard_DS13-2_v2": "Standard_DS13-2_v2", "Standard_DS13-4_v2": "Standard_DS13-4_v2", "Standard_DS13_v2": "Standard_DS13_v2", "Standard_DS14": "Standard_DS14", "Standard_DS14-4_v2": "Standard_DS14-4_v2", "Standard_DS14-8_v2": "Standard_DS14-8_v2", "Standard_DS14_v2": "Standard_DS14_v2", "Standard_DS15_v2": "Standard_DS15_v2", "Standard_DS1_v2": "Standard_DS1_v2", "Standard_DS2": "Standard_DS2", "Standard_DS2_v2": "Standard_DS2_v2", "Standard_DS3": "Standard_DS3", "Standard_DS3_v2": "Standard_DS3_v2", "Standard_DS4": "Standard_DS4", "Standard_DS4_v2": "Standard_DS4_v2", "Standard_DS5_v2": "Standard_DS5_v2", "Standard_E16_v3": "Standard_E16_v3", "Standard_E16s_v3": "Standard_E16s_v3", "Standard_E2_v3": "Standard_E2_v3", "Standard_E2s_v3": "Standard_E2s_v3", "Standard_E32-16_v3": "Standard_E32-16_v3", "Standard_E32-8s_v3": "Standard_E32-8s_v3", "Standard_E32_v3": "Standard_E32_v3", "Standard_E32s_v3": "Standard_E32s_v3", "Standard_E4_v3": "Standard_E4_v3", "Standard_E4s_v3": "Standard_E4s_v3", "Standard_E64-16s_v3": "Standard_E64-16s_v3", "Standard_E64-32s_v3": "Standard_E64-32s_v3", "Standard_E64_v3": "Standard_E64_v3", "Standard_E64s_v3": "Standard_E64s_v3", "Standard_E8_v3": "Standard_E8_v3", "Standard_E8s_v3": "Standard_E8s_v3", "Standard_F1": "Standard_F1", "Standard_F16": "Standard_F16", "Standard_F16s": "Standard_F16s", "Standard_F16s_v2": "Standard_F16s_v2", "Standard_F1s": "Standard_F1s", "Standard_F2": "Standard_F2", "Standard_F2s": "Standard_F2s", "Standard_F2s_v2": "Standard_F2s_v2", "Standard_F32s_v2": "Standard_F32s_v2", "Standard_F4": "Standard_F4", "Standard_F4s": "Standard_F4s", "Standard_F4s_v2": "Standard_F4s_v2", "Standard_F64s_v2": "Standard_F64s_v2", "Standard_F72s_v2": "Standard_F72s_v2", "Standard_F8": "Standard_F8", "Standard_F8s": "Standard_F8s", "Standard_F8s_v2": "Standard_F8s_v2", "Standard_G1": "Standard_G1", "Standard_G2": "Standard_G2", "Standard_G3": "Standard_G3", "Standard_G4": "Standard_G4", "Standard_G5": "Standard_G5", "Standard_GS1": "Standard_GS1", "Standard_GS2": "Standard_GS2", "Standard_GS3": "Standard_GS3", "Standard_GS4": "Standard_GS4", "Standard_GS4-4": "Standard_GS4-4", "Standard_GS4-8": "Standard_GS4-8", "Standard_GS5": "Standard_GS5", "Standard_GS5-16": "Standard_GS5-16", "Standard_GS5-8": "Standard_GS5-8", "Standard_H16": "Standard_H16", "Standard_H16m": "Standard_H16m", "Standard_H16mr": "Standard_H16mr", "Standard_H16r": "Standard_H16r", "Standard_H8": "Standard_H8", "Standard_H8m": "Standard_H8m", "Standard_L16s": "Standard_L16s", "Standard_L32s": "Standard_L32s", "Standard_L4s": "Standard_L4s", "Standard_L8s": "Standard_L8s", "Standard_M128-32ms": "Standard_M128-32ms", "Standard_M128-64ms": "Standard_M128-64ms", "Standard_M128ms": "Standard_M128ms", "Standard_M128s": "Standard_M128s", "Standard_M64-16ms": "Standard_M64-16ms", "Standard_M64-32ms": "Standard_M64-32ms", "Standard_M64ms": "Standard_M64ms", "Standard_M64s": "Standard_M64s", "Standard_NC12": "Standard_NC12", "Standard_NC12s_v2": "Standard_NC12s_v2", "Standard_NC12s_v3": "Standard_NC12s_v3", "Standard_NC24": "Standard_NC24", "Standard_NC24r": "Standard_NC24r", "Standard_NC24rs_v2": "Standard_NC24rs_v2", "Standard_NC24rs_v3": "Standard_NC24rs_v3", "Standard_NC24s_v2": "Standard_NC24s_v2", "Standard_NC24s_v3": "Standard_NC24s_v3", "Standard_NC6": "Standard_NC6", "Standard_NC6s_v2": "Standard_NC6s_v2", "Standard_NC6s_v3": "Standard_NC6s_v3", "Standard_ND12s": "Standard_ND12s", "Standard_ND24rs": "Standard_ND24rs", "Standard_ND24s": "Standard_ND24s", "Standard_ND6s": "Standard_ND6s", "Standard_NV12": "Standard_NV12", "Standard_NV24": "Standard_NV24", "Standard_NV6": "Standard_NV6"},
+ )
+ hardware_profile.vm_size_properties = AAZObjectArg(
+ options=["vm-size-properties"],
+ help="Specifies the properties for customizing the size of the virtual machine. Minimum api-version: 2021-07-01. This feature is still in preview mode and is not supported for VirtualMachineScaleSet. Please follow the instructions in [VM Customization](https://aka.ms/vmcustomization) for more details.",
+ nullable=True,
+ )
+
+ vm_size_properties = cls._args_schema.hardware_profile.vm_size_properties
+ vm_size_properties.v_cp_us_available = AAZIntArg(
+ options=["v-cp-us-available"],
+ help="Specifies the number of vCPUs available for the VM. When this property is not specified in the request body the default behavior is to set it to the value of vCPUs available for that VM size exposed in api response of [List all available virtual machine sizes in a region](https://docs.microsoft.com/en-us/rest/api/compute/resource-skus/list).",
+ nullable=True,
+ )
+ vm_size_properties.v_cp_us_per_core = AAZIntArg(
+ options=["v-cp-us-per-core"],
+ help="Specifies the vCPU to physical core ratio. When this property is not specified in the request body the default behavior is set to the value of vCPUsPerCore for the VM Size exposed in api response of [List all available virtual machine sizes in a region](https://docs.microsoft.com/en-us/rest/api/compute/resource-skus/list). **Setting this property to 1 also means that hyper-threading is disabled.**",
+ nullable=True,
+ )
+
+ network_profile = cls._args_schema.network_profile
+ network_profile.network_api_version = AAZStrArg(
+ options=["network-api-version"],
+ help="specifies the Microsoft.Network API version used when creating networking resources in the Network Interface Configurations",
+ nullable=True,
+ enum={"2020-11-01": "2020-11-01"},
+ )
+ network_profile.network_interface_configurations = AAZListArg(
+ options=["network-interface-configurations"],
+ help="Specifies the networking configurations that will be used to create the virtual machine networking resources.",
+ nullable=True,
+ )
+ network_profile.network_interfaces = AAZListArg(
+ options=["network-interfaces"],
+ help="Specifies the list of resource Ids for the network interfaces associated with the virtual machine.",
+ nullable=True,
+ )
+
+ network_interface_configurations = cls._args_schema.network_profile.network_interface_configurations
+ network_interface_configurations.Element = AAZObjectArg(
+ nullable=True,
+ )
+
+ _element = cls._args_schema.network_profile.network_interface_configurations.Element
+ _element.name = AAZStrArg(
+ options=["name"],
+ help="The network interface configuration name.",
+ )
+ _element.auxiliary_mode = AAZStrArg(
+ options=["auxiliary-mode"],
+ help="Specifies whether the Auxiliary mode is enabled for the Network Interface resource.",
+ nullable=True,
+ enum={"AcceleratedConnections": "AcceleratedConnections", "Floating": "Floating", "None": "None"},
+ )
+ _element.auxiliary_sku = AAZStrArg(
+ options=["auxiliary-sku"],
+ help="Specifies whether the Auxiliary sku is enabled for the Network Interface resource.",
+ nullable=True,
+ enum={"A1": "A1", "A2": "A2", "A4": "A4", "A8": "A8", "None": "None"},
+ )
+ _element.delete_option = AAZStrArg(
+ options=["delete-option"],
+ help="Specify what happens to the network interface when the VM is deleted",
+ nullable=True,
+ enum={"Delete": "Delete", "Detach": "Detach"},
+ )
+ _element.disable_tcp_state_tracking = AAZBoolArg(
+ options=["disable-tcp-state-tracking"],
+ help="Specifies whether the network interface is disabled for tcp state tracking.",
+ nullable=True,
+ )
+ _element.dns_settings = AAZObjectArg(
+ options=["dns-settings"],
+ help="The dns settings to be applied on the network interfaces.",
+ nullable=True,
+ )
+ _element.dscp_configuration = AAZObjectArg(
+ options=["dscp-configuration"],
+ )
+ cls._build_args_sub_resource_update(_element.dscp_configuration)
+ _element.enable_accelerated_networking = AAZBoolArg(
+ options=["enable-accelerated-networking"],
+ help="Specifies whether the network interface is accelerated networking-enabled.",
+ nullable=True,
+ )
+ _element.enable_fpga = AAZBoolArg(
+ options=["enable-fpga"],
+ help="Specifies whether the network interface is FPGA networking-enabled.",
+ nullable=True,
+ )
+ _element.enable_ip_forwarding = AAZBoolArg(
+ options=["enable-ip-forwarding"],
+ help="Whether IP forwarding enabled on this NIC.",
+ nullable=True,
+ )
+ _element.ip_configurations = AAZListArg(
+ options=["ip-configurations"],
+ help="Specifies the IP configurations of the network interface.",
+ )
+ _element.network_security_group = AAZObjectArg(
+ options=["network-security-group"],
+ help="The network security group.",
+ )
+ cls._build_args_sub_resource_update(_element.network_security_group)
+ _element.primary = AAZBoolArg(
+ options=["primary"],
+ help="Specifies the primary network interface in case the virtual machine has more than 1 network interface.",
+ nullable=True,
+ )
+
+ dns_settings = cls._args_schema.network_profile.network_interface_configurations.Element.dns_settings
+ dns_settings.dns_servers = AAZListArg(
+ options=["dns-servers"],
+ help="List of DNS servers IP addresses",
+ nullable=True,
+ )
+
+ dns_servers = cls._args_schema.network_profile.network_interface_configurations.Element.dns_settings.dns_servers
+ dns_servers.Element = AAZStrArg(
+ nullable=True,
+ )
+
+ ip_configurations = cls._args_schema.network_profile.network_interface_configurations.Element.ip_configurations
+ ip_configurations.Element = AAZObjectArg(
+ nullable=True,
+ )
+
+ _element = cls._args_schema.network_profile.network_interface_configurations.Element.ip_configurations.Element
+ _element.name = AAZStrArg(
+ options=["name"],
+ help="The IP configuration name.",
+ )
+ _element.application_gateway_backend_address_pools = AAZListArg(
+ options=["application-gateway-backend-address-pools"],
+ help="Specifies an array of references to backend address pools of application gateways. A virtual machine can reference backend address pools of multiple application gateways. Multiple virtual machines cannot use the same application gateway.",
+ nullable=True,
+ )
+ _element.application_security_groups = AAZListArg(
+ options=["application-security-groups"],
+ help="Specifies an array of references to application security group.",
+ nullable=True,
+ )
+ _element.load_balancer_backend_address_pools = AAZListArg(
+ options=["load-balancer-backend-address-pools"],
+ help="Specifies an array of references to backend address pools of load balancers. A virtual machine can reference backend address pools of one public and one internal load balancer. [Multiple virtual machines cannot use the same basic sku load balancer].",
+ nullable=True,
+ )
+ _element.primary = AAZBoolArg(
+ options=["primary"],
+ help="Specifies the primary network interface in case the virtual machine has more than 1 network interface.",
+ nullable=True,
+ )
+ _element.private_ip_address_version = AAZStrArg(
+ options=["private-ip-address-version"],
+ help="Available from Api-Version 2017-03-30 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.",
+ nullable=True,
+ enum={"IPv4": "IPv4", "IPv6": "IPv6"},
+ )
+ _element.public_ip_address_configuration = AAZObjectArg(
+ options=["public-ip-address-configuration"],
+ help="The publicIPAddressConfiguration.",
+ nullable=True,
+ )
+ _element.subnet = AAZObjectArg(
+ options=["subnet"],
+ help="Specifies the identifier of the subnet.",
+ )
+ cls._build_args_sub_resource_update(_element.subnet)
+
+ application_gateway_backend_address_pools = cls._args_schema.network_profile.network_interface_configurations.Element.ip_configurations.Element.application_gateway_backend_address_pools
+ application_gateway_backend_address_pools.Element = AAZObjectArg()
+ cls._build_args_sub_resource_update(application_gateway_backend_address_pools.Element)
+
+ application_security_groups = cls._args_schema.network_profile.network_interface_configurations.Element.ip_configurations.Element.application_security_groups
+ application_security_groups.Element = AAZObjectArg()
+ cls._build_args_sub_resource_update(application_security_groups.Element)
+
+ load_balancer_backend_address_pools = cls._args_schema.network_profile.network_interface_configurations.Element.ip_configurations.Element.load_balancer_backend_address_pools
+ load_balancer_backend_address_pools.Element = AAZObjectArg()
+ cls._build_args_sub_resource_update(load_balancer_backend_address_pools.Element)
+
+ public_ip_address_configuration = cls._args_schema.network_profile.network_interface_configurations.Element.ip_configurations.Element.public_ip_address_configuration
+ public_ip_address_configuration.name = AAZStrArg(
+ options=["name"],
+ help="The publicIP address configuration name.",
+ )
+ public_ip_address_configuration.delete_option = AAZStrArg(
+ options=["delete-option"],
+ help="Specify what happens to the public IP address when the VM is deleted",
+ nullable=True,
+ enum={"Delete": "Delete", "Detach": "Detach"},
+ )
+ public_ip_address_configuration.dns_settings = AAZObjectArg(
+ options=["dns-settings"],
+ help="The dns settings to be applied on the publicIP addresses .",
+ nullable=True,
+ )
+ public_ip_address_configuration.idle_timeout_in_minutes = AAZIntArg(
+ options=["idle-timeout-in-minutes"],
+ help="The idle timeout of the public IP address.",
+ nullable=True,
+ )
+ public_ip_address_configuration.ip_tags = AAZListArg(
+ options=["ip-tags"],
+ help="The list of IP tags associated with the public IP address.",
+ nullable=True,
+ )
+ public_ip_address_configuration.public_ip_address_version = AAZStrArg(
+ options=["public-ip-address-version"],
+ help="Available from Api-Version 2019-07-01 onwards, it represents whether the specific ipconfiguration is IPv4 or IPv6. Default is taken as IPv4. Possible values are: 'IPv4' and 'IPv6'.",
+ nullable=True,
+ enum={"IPv4": "IPv4", "IPv6": "IPv6"},
+ )
+ public_ip_address_configuration.public_ip_allocation_method = AAZStrArg(
+ options=["public-ip-allocation-method"],
+ help="Specify the public IP allocation type",
+ nullable=True,
+ enum={"Dynamic": "Dynamic", "Static": "Static"},
+ )
+ public_ip_address_configuration.public_ip_prefix = AAZObjectArg(
+ options=["public-ip-prefix"],
+ help="The PublicIPPrefix from which to allocate publicIP addresses.",
+ )
+ cls._build_args_sub_resource_update(public_ip_address_configuration.public_ip_prefix)
+ public_ip_address_configuration.sku = AAZObjectArg(
+ options=["sku"],
+ help="Describes the public IP Sku. It can only be set with OrchestrationMode as Flexible.",
+ nullable=True,
+ )
+
+ dns_settings = cls._args_schema.network_profile.network_interface_configurations.Element.ip_configurations.Element.public_ip_address_configuration.dns_settings
+ dns_settings.domain_name_label = AAZStrArg(
+ options=["domain-name-label"],
+ help="The Domain name label prefix of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the domain name label and vm network profile unique ID.",
+ )
+ dns_settings.domain_name_label_scope = AAZStrArg(
+ options=["domain-name-label-scope"],
+ help="The Domain name label scope of the PublicIPAddress resources that will be created. The generated name label is the concatenation of the hashed domain name label with policy according to the domain name label scope and vm network profile unique ID.",
+ nullable=True,
+ enum={"NoReuse": "NoReuse", "ResourceGroupReuse": "ResourceGroupReuse", "SubscriptionReuse": "SubscriptionReuse", "TenantReuse": "TenantReuse"},
+ )
+
+ ip_tags = cls._args_schema.network_profile.network_interface_configurations.Element.ip_configurations.Element.public_ip_address_configuration.ip_tags
+ ip_tags.Element = AAZObjectArg(
+ nullable=True,
+ )
+
+ _element = cls._args_schema.network_profile.network_interface_configurations.Element.ip_configurations.Element.public_ip_address_configuration.ip_tags.Element
+ _element.ip_tag_type = AAZStrArg(
+ options=["ip-tag-type"],
+ help="IP tag type. Example: FirstPartyUsage.",
+ nullable=True,
+ )
+ _element.tag = AAZStrArg(
+ options=["tag"],
+ help="IP tag associated with the public IP. Example: SQL, Storage etc.",
+ nullable=True,
+ )
+
+ sku = cls._args_schema.network_profile.network_interface_configurations.Element.ip_configurations.Element.public_ip_address_configuration.sku
+ sku.name = AAZStrArg(
+ options=["name"],
+ help="Specify public IP sku name",
+ nullable=True,
+ enum={"Basic": "Basic", "Standard": "Standard"},
+ )
+ sku.tier = AAZStrArg(
+ options=["tier"],
+ help="Specify public IP sku tier",
+ nullable=True,
+ enum={"Global": "Global", "Regional": "Regional"},
+ )
+
+ network_interfaces = cls._args_schema.network_profile.network_interfaces
+ network_interfaces.Element = AAZObjectArg(
+ nullable=True,
+ )
+
+ _element = cls._args_schema.network_profile.network_interfaces.Element
+ _element.id = AAZStrArg(
+ options=["id"],
+ help="Resource Id",
+ nullable=True,
+ )
+ _element.delete_option = AAZStrArg(
+ options=["delete-option"],
+ help="Specify what happens to the network interface when the VM is deleted",
+ nullable=True,
+ enum={"Delete": "Delete", "Detach": "Detach"},
+ )
+ _element.primary = AAZBoolArg(
+ options=["primary"],
+ help="Specifies the primary network interface in case the virtual machine has more than 1 network interface.",
+ nullable=True,
+ )
+
+ os_profile = cls._args_schema.os_profile
+ os_profile.admin_password = AAZStrArg(
+ options=["admin-password"],
+ help="Specifies the password of the administrator account.
**Minimum-length (Windows):** 8 characters
**Minimum-length (Linux):** 6 characters
**Max-length (Windows):** 123 characters
**Max-length (Linux):** 72 characters
**Complexity requirements:** 3 out of 4 conditions below need to be fulfilled
Has lower characters
Has upper characters
Has a digit
Has a special character (Regex match [\\W_])
**Disallowed values:** \"abc@123\", \"P@$$w0rd\", \"P@ssw0rd\", \"P@ssword123\", \"Pa$$word\", \"pass@word1\", \"Password!\", \"Password1\", \"Password22\", \"iloveyou!\"
For resetting the password, see [How to reset the Remote Desktop service or its login password in a Windows VM](https://docs.microsoft.com/troubleshoot/azure/virtual-machines/reset-rdp)
For resetting root password, see [Manage users, SSH, and check or repair disks on Azure Linux VMs using the VMAccess Extension](https://docs.microsoft.com/troubleshoot/azure/virtual-machines/troubleshoot-ssh-connection)",
+ nullable=True,
+ )
+ os_profile.admin_username = AAZStrArg(
+ options=["admin-username"],
+ help="Specifies the name of the administrator account.
This property cannot be updated after the VM is created.
**Windows-only restriction:** Cannot end in \".\"
**Disallowed values:** \"administrator\", \"admin\", \"user\", \"user1\", \"test\", \"user2\", \"test1\", \"user3\", \"admin1\", \"1\", \"123\", \"a\", \"actuser\", \"adm\", \"admin2\", \"aspnet\", \"backup\", \"console\", \"david\", \"guest\", \"john\", \"owner\", \"root\", \"server\", \"sql\", \"support\", \"support_388945a0\", \"sys\", \"test2\", \"test3\", \"user4\", \"user5\".
**Minimum-length (Linux):** 1 character
**Max-length (Linux):** 64 characters
**Max-length (Windows):** 20 characters.",
+ nullable=True,
+ )
+ os_profile.allow_extension_operations = AAZBoolArg(
+ options=["allow-extension-operations"],
+ help="Specifies whether extension operations should be allowed on the virtual machine. This may only be set to False when no extensions are present on the virtual machine.",
+ nullable=True,
+ )
+ os_profile.computer_name = AAZStrArg(
+ options=["computer-name"],
+ help="Specifies the host OS name of the virtual machine. This name cannot be updated after the VM is created. **Max-length (Windows):** 15 characters. **Max-length (Linux):** 64 characters. For naming conventions and restrictions see [Azure infrastructure services implementation guidelines](https://docs.microsoft.com/azure/azure-resource-manager/management/resource-name-rules).",
+ nullable=True,
+ )
+ os_profile.custom_data = AAZStrArg(
+ options=["custom-data"],
+ help="Specifies a base-64 encoded string of custom data. The base-64 encoded string is decoded to a binary array that is saved as a file on the Virtual Machine. The maximum length of the binary array is 65535 bytes. **Note: Do not pass any secrets or passwords in customData property.** This property cannot be updated after the VM is created. The property 'customData' is passed to the VM to be saved as a file, for more information see [Custom Data on Azure VMs](https://azure.microsoft.com/blog/custom-data-and-cloud-init-on-windows-azure/). For using cloud-init for your Linux VM, see [Using cloud-init to customize a Linux VM during creation](https://docs.microsoft.com/azure/virtual-machines/linux/using-cloud-init).",
+ nullable=True,
+ )
+ os_profile.linux_configuration = AAZObjectArg(
+ options=["linux-configuration"],
+ help="Specifies the Linux operating system settings on the virtual machine. For a list of supported Linux distributions, see [Linux on Azure-Endorsed Distributions](https://docs.microsoft.com/azure/virtual-machines/linux/endorsed-distros).",
+ nullable=True,
+ )
+ os_profile.require_guest_provision_signal = AAZBoolArg(
+ options=["require-guest-provision-signal"],
+ help="Optional property which must either be set to True or omitted.",
+ nullable=True,
+ )
+ os_profile.secrets = AAZListArg(
+ options=["secrets"],
+ help="Specifies set of certificates that should be installed onto the virtual machine. To install certificates on a virtual machine it is recommended to use the [Azure Key Vault virtual machine extension for Linux](https://docs.microsoft.com/azure/virtual-machines/extensions/key-vault-linux) or the [Azure Key Vault virtual machine extension for Windows](https://docs.microsoft.com/azure/virtual-machines/extensions/key-vault-windows).",
+ nullable=True,
+ )
+ os_profile.windows_configuration = AAZObjectArg(
+ options=["windows-configuration"],
+ help="Specifies Windows operating system settings on the virtual machine.",
+ nullable=True,
+ )
+
+ linux_configuration = cls._args_schema.os_profile.linux_configuration
+ linux_configuration.disable_password_authentication = AAZBoolArg(
+ options=["disable-password-authentication"],
+ help="Specifies whether password authentication should be disabled.",
+ nullable=True,
+ )
+ linux_configuration.enable_vm_agent_platform_updates = AAZBoolArg(
+ options=["enable-vm-agent-platform-updates"],
+ help="Indicates whether VMAgent Platform Updates is enabled for the Linux virtual machine. Default value is false.",
+ nullable=True,
+ )
+ linux_configuration.patch_settings = AAZObjectArg(
+ options=["patch-settings"],
+ help="[Preview Feature] Specifies settings related to VM Guest Patching on Linux.",
+ nullable=True,
+ )
+ linux_configuration.provision_vm_agent = AAZBoolArg(
+ options=["provision-vm-agent"],
+ help="Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, default behavior is to set it to true. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.",
+ nullable=True,
+ )
+ linux_configuration.ssh = AAZObjectArg(
+ options=["ssh"],
+ help="Specifies the ssh key configuration for a Linux OS.",
+ nullable=True,
+ )
+
+ patch_settings = cls._args_schema.os_profile.linux_configuration.patch_settings
+ patch_settings.assessment_mode = AAZStrArg(
+ options=["assessment-mode"],
+ help="Specifies the mode of VM Guest Patch Assessment for the IaaS virtual machine.
Possible values are:
**ImageDefault** - You control the timing of patch assessments on a virtual machine.
**AutomaticByPlatform** - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true.",
+ nullable=True,
+ enum={"AutomaticByPlatform": "AutomaticByPlatform", "ImageDefault": "ImageDefault"},
+ )
+ patch_settings.automatic_by_platform_settings = AAZObjectArg(
+ options=["automatic-by-platform-settings"],
+ help="Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Linux.",
+ nullable=True,
+ )
+ patch_settings.patch_mode = AAZStrArg(
+ options=["patch-mode"],
+ help="Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible.
Possible values are:
**ImageDefault** - The virtual machine's default patching configuration is used.
**AutomaticByPlatform** - The virtual machine will be automatically updated by the platform. The property provisionVMAgent must be true",
+ nullable=True,
+ enum={"AutomaticByPlatform": "AutomaticByPlatform", "ImageDefault": "ImageDefault"},
+ )
+
+ automatic_by_platform_settings = cls._args_schema.os_profile.linux_configuration.patch_settings.automatic_by_platform_settings
+ automatic_by_platform_settings.bypass_platform_safety_checks_on_user_schedule = AAZBoolArg(
+ options=["bypass-platform-safety-checks-on-user-schedule"],
+ help="Enables customer to schedule patching without accidental upgrades",
+ nullable=True,
+ )
+ automatic_by_platform_settings.reboot_setting = AAZStrArg(
+ options=["reboot-setting"],
+ help="Specifies the reboot setting for all AutomaticByPlatform patch installation operations.",
+ nullable=True,
+ enum={"Always": "Always", "IfRequired": "IfRequired", "Never": "Never", "Unknown": "Unknown"},
+ )
+
+ ssh = cls._args_schema.os_profile.linux_configuration.ssh
+ ssh.public_keys = AAZListArg(
+ options=["public-keys"],
+ help="The list of SSH public keys used to authenticate with linux based VMs.",
+ nullable=True,
+ )
+
+ public_keys = cls._args_schema.os_profile.linux_configuration.ssh.public_keys
+ public_keys.Element = AAZObjectArg(
+ nullable=True,
+ )
+
+ _element = cls._args_schema.os_profile.linux_configuration.ssh.public_keys.Element
+ _element.key_data = AAZStrArg(
+ options=["key-data"],
+ help="SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. For creating ssh keys, see [Create SSH keys on Linux and Mac for Linux VMs in Azure]https://docs.microsoft.com/azure/virtual-machines/linux/create-ssh-keys-detailed).",
+ nullable=True,
+ )
+ _element.path = AAZStrArg(
+ options=["path"],
+ help="Specifies the full path on the created VM where ssh public key is stored. If the file already exists, the specified key is appended to the file. Example: /home/user/.ssh/authorized_keys",
+ nullable=True,
+ )
+
+ secrets = cls._args_schema.os_profile.secrets
+ secrets.Element = AAZObjectArg(
+ nullable=True,
+ )
+
+ _element = cls._args_schema.os_profile.secrets.Element
+ _element.source_vault = AAZObjectArg(
+ options=["source-vault"],
+ help="The relative URL of the Key Vault containing all of the certificates in VaultCertificates.",
+ )
+ cls._build_args_sub_resource_update(_element.source_vault)
+ _element.vault_certificates = AAZListArg(
+ options=["vault-certificates"],
+ help="The list of key vault references in SourceVault which contain certificates.",
+ nullable=True,
+ )
+
+ vault_certificates = cls._args_schema.os_profile.secrets.Element.vault_certificates
+ vault_certificates.Element = AAZObjectArg(
+ nullable=True,
+ )
+
+ _element = cls._args_schema.os_profile.secrets.Element.vault_certificates.Element
+ _element.certificate_store = AAZStrArg(
+ options=["certificate-store"],
+ help="For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name <UppercaseThumbprint>.crt for the X509 certificate file and <UppercaseThumbprint>.prv for private key. Both of these files are .pem formatted.",
+ nullable=True,
+ )
+ _element.certificate_url = AAZStrArg(
+ options=["certificate-url"],
+ help="This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see [Add a key or secret to the key vault](https://docs.microsoft.com/azure/key-vault/key-vault-get-started/#add). In this case, your certificate needs to be It is the Base64 encoding of the following JSON Object which is encoded in UTF-8:
{
\"data\":\"\",
\"dataType\":\"pfx\",
\"password\":\"\"
}
To install certificates on a virtual machine it is recommended to use the [Azure Key Vault virtual machine extension for Linux](https://docs.microsoft.com/azure/virtual-machines/extensions/key-vault-linux) or the [Azure Key Vault virtual machine extension for Windows](https://docs.microsoft.com/azure/virtual-machines/extensions/key-vault-windows).",
+ nullable=True,
+ )
+
+ windows_configuration = cls._args_schema.os_profile.windows_configuration
+ windows_configuration.additional_unattend_content = AAZListArg(
+ options=["additional-unattend-content"],
+ help="Specifies additional base-64 encoded XML formatted information that can be included in the Unattend.xml file, which is used by Windows Setup.",
+ nullable=True,
+ )
+ windows_configuration.enable_automatic_updates = AAZBoolArg(
+ options=["enable-automatic-updates"],
+ help="Indicates whether Automatic Updates is enabled for the Windows virtual machine. Default value is true. For virtual machine scale sets, this property can be updated and updates will take effect on OS reprovisioning.",
+ nullable=True,
+ )
+ windows_configuration.patch_settings = AAZObjectArg(
+ options=["patch-settings"],
+ help="[Preview Feature] Specifies settings related to VM Guest Patching on Windows.",
+ nullable=True,
+ )
+ windows_configuration.provision_vm_agent = AAZBoolArg(
+ options=["provision-vm-agent"],
+ help="Indicates whether virtual machine agent should be provisioned on the virtual machine. When this property is not specified in the request body, it is set to true by default. This will ensure that VM Agent is installed on the VM so that extensions can be added to the VM later.",
+ nullable=True,
+ )
+ windows_configuration.time_zone = AAZStrArg(
+ options=["time-zone"],
+ help="Specifies the time zone of the virtual machine. e.g. \"Pacific Standard Time\". Possible values can be [TimeZoneInfo.Id](https://docs.microsoft.com/dotnet/api/system.timezoneinfo.id?#System_TimeZoneInfo_Id) value from time zones returned by [TimeZoneInfo.GetSystemTimeZones](https://docs.microsoft.com/dotnet/api/system.timezoneinfo.getsystemtimezones).",
+ nullable=True,
+ )
+ windows_configuration.win_rm = AAZObjectArg(
+ options=["win-rm"],
+ help="Specifies the Windows Remote Management listeners. This enables remote Windows PowerShell.",
+ nullable=True,
+ )
+
+ additional_unattend_content = cls._args_schema.os_profile.windows_configuration.additional_unattend_content
+ additional_unattend_content.Element = AAZObjectArg(
+ nullable=True,
+ )
+
+ _element = cls._args_schema.os_profile.windows_configuration.additional_unattend_content.Element
+ _element.component_name = AAZStrArg(
+ options=["component-name"],
+ help="The component name. Currently, the only allowable value is Microsoft-Windows-Shell-Setup.",
+ nullable=True,
+ enum={"Microsoft-Windows-Shell-Setup": "Microsoft-Windows-Shell-Setup"},
+ )
+ _element.content = AAZStrArg(
+ options=["content"],
+ help="Specifies the XML formatted content that is added to the unattend.xml file for the specified path and component. The XML must be less than 4KB and must include the root element for the setting or feature that is being inserted.",
+ nullable=True,
+ )
+ _element.pass_name = AAZStrArg(
+ options=["pass-name"],
+ help="The pass name. Currently, the only allowable value is OobeSystem.",
+ nullable=True,
+ enum={"OobeSystem": "OobeSystem"},
+ )
+ _element.setting_name = AAZStrArg(
+ options=["setting-name"],
+ help="Specifies the name of the setting to which the content applies. Possible values are: FirstLogonCommands and AutoLogon.",
+ nullable=True,
+ enum={"AutoLogon": "AutoLogon", "FirstLogonCommands": "FirstLogonCommands"},
+ )
+
+ patch_settings = cls._args_schema.os_profile.windows_configuration.patch_settings
+ patch_settings.assessment_mode = AAZStrArg(
+ options=["assessment-mode"],
+ help="Specifies the mode of VM Guest patch assessment for the IaaS virtual machine.
Possible values are:
**ImageDefault** - You control the timing of patch assessments on a virtual machine.
**AutomaticByPlatform** - The platform will trigger periodic patch assessments. The property provisionVMAgent must be true. ",
+ nullable=True,
+ enum={"AutomaticByPlatform": "AutomaticByPlatform", "ImageDefault": "ImageDefault"},
+ )
+ patch_settings.automatic_by_platform_settings = AAZObjectArg(
+ options=["automatic-by-platform-settings"],
+ help="Specifies additional settings for patch mode AutomaticByPlatform in VM Guest Patching on Windows.",
+ nullable=True,
+ )
+ patch_settings.enable_hotpatching = AAZBoolArg(
+ options=["enable-hotpatching"],
+ help="Enables customers to patch their Azure VMs without requiring a reboot. For enableHotpatching, the 'provisionVMAgent' must be set to true and 'patchMode' must be set to 'AutomaticByPlatform'.",
+ nullable=True,
+ )
+ patch_settings.patch_mode = AAZStrArg(
+ options=["patch-mode"],
+ help="Specifies the mode of VM Guest Patching to IaaS virtual machine or virtual machines associated to virtual machine scale set with OrchestrationMode as Flexible.
Possible values are:
**Manual** - You control the application of patches to a virtual machine. You do this by applying patches manually inside the VM. In this mode, automatic updates are disabled; the property WindowsConfiguration.enableAutomaticUpdates must be false
**AutomaticByOS** - The virtual machine will automatically be updated by the OS. The property WindowsConfiguration.enableAutomaticUpdates must be true.
**AutomaticByPlatform** - the virtual machine will automatically updated by the platform. The properties provisionVMAgent and WindowsConfiguration.enableAutomaticUpdates must be true ",
+ nullable=True,
+ enum={"AutomaticByOS": "AutomaticByOS", "AutomaticByPlatform": "AutomaticByPlatform", "Manual": "Manual"},
+ )
+
+ automatic_by_platform_settings = cls._args_schema.os_profile.windows_configuration.patch_settings.automatic_by_platform_settings
+ automatic_by_platform_settings.bypass_platform_safety_checks_on_user_schedule = AAZBoolArg(
+ options=["bypass-platform-safety-checks-on-user-schedule"],
+ help="Enables customer to schedule patching without accidental upgrades",
+ nullable=True,
+ )
+ automatic_by_platform_settings.reboot_setting = AAZStrArg(
+ options=["reboot-setting"],
+ help="Specifies the reboot setting for all AutomaticByPlatform patch installation operations.",
+ nullable=True,
+ enum={"Always": "Always", "IfRequired": "IfRequired", "Never": "Never", "Unknown": "Unknown"},
+ )
+
+ win_rm = cls._args_schema.os_profile.windows_configuration.win_rm
+ win_rm.listeners = AAZListArg(
+ options=["listeners"],
+ help="The list of Windows Remote Management listeners",
+ nullable=True,
+ )
+
+ listeners = cls._args_schema.os_profile.windows_configuration.win_rm.listeners
+ listeners.Element = AAZObjectArg(
+ nullable=True,
+ )
+
+ _element = cls._args_schema.os_profile.windows_configuration.win_rm.listeners.Element
+ _element.certificate_url = AAZStrArg(
+ options=["certificate-url"],
+ help="This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see [Add a key or secret to the key vault](https://docs.microsoft.com/azure/key-vault/key-vault-get-started/#add). In this case, your certificate needs to be the Base64 encoding of the following JSON Object which is encoded in UTF-8:
{
\"data\":\"\",
\"dataType\":\"pfx\",
\"password\":\"\"
}
To install certificates on a virtual machine it is recommended to use the [Azure Key Vault virtual machine extension for Linux](https://docs.microsoft.com/azure/virtual-machines/extensions/key-vault-linux) or the [Azure Key Vault virtual machine extension for Windows](https://docs.microsoft.com/azure/virtual-machines/extensions/key-vault-windows).",
+ nullable=True,
+ )
+ _element.protocol = AAZStrArg(
+ options=["protocol"],
+ help="Specifies the protocol of WinRM listener. Possible values are: **http,** **https.**",
+ nullable=True,
+ enum={"Http": "Http", "Https": "Https"},
+ )
+
+ scheduled_events_policy = cls._args_schema.scheduled_events_policy
+ scheduled_events_policy.scheduled_events_additional_publishing_targets = AAZObjectArg(
+ options=["scheduled-events-additional-publishing-targets"],
+ help="The configuration parameters used while publishing scheduledEventsAdditionalPublishingTargets.",
+ nullable=True,
+ )
+ scheduled_events_policy.user_initiated_reboot = AAZObjectArg(
+ options=["user-initiated-reboot"],
+ help="The configuration parameters used while creating userInitiatedReboot scheduled event setting creation.",
+ nullable=True,
+ )
+ scheduled_events_policy.user_initiated_redeploy = AAZObjectArg(
+ options=["user-initiated-redeploy"],
+ help="The configuration parameters used while creating userInitiatedRedeploy scheduled event setting creation.",
+ nullable=True,
+ )
+
+ scheduled_events_additional_publishing_targets = cls._args_schema.scheduled_events_policy.scheduled_events_additional_publishing_targets
+ scheduled_events_additional_publishing_targets.event_grid_and_resource_graph = AAZObjectArg(
+ options=["event-grid-and-resource-graph"],
+ help="The configuration parameters used while creating eventGridAndResourceGraph Scheduled Event setting.",
+ nullable=True,
+ )
+
+ event_grid_and_resource_graph = cls._args_schema.scheduled_events_policy.scheduled_events_additional_publishing_targets.event_grid_and_resource_graph
+ event_grid_and_resource_graph.enable = AAZBoolArg(
+ options=["enable"],
+ help="Specifies if event grid and resource graph is enabled for Scheduled event related configurations.",
+ nullable=True,
+ )
+
+ user_initiated_reboot = cls._args_schema.scheduled_events_policy.user_initiated_reboot
+ user_initiated_reboot.automatically_approve = AAZBoolArg(
+ options=["automatically-approve"],
+ help="Specifies Reboot Scheduled Event related configurations.",
+ nullable=True,
+ )
+
+ user_initiated_redeploy = cls._args_schema.scheduled_events_policy.user_initiated_redeploy
+ user_initiated_redeploy.automatically_approve = AAZBoolArg(
+ options=["automatically-approve"],
+ help="Specifies Redeploy Scheduled Event related configurations.",
+ nullable=True,
+ )
+
+ scheduled_events_profile = cls._args_schema.scheduled_events_profile
+ scheduled_events_profile.os_image_notification_profile = AAZObjectArg(
+ options=["os-image-notification-profile"],
+ help="Specifies OS Image Scheduled Event related configurations.",
+ nullable=True,
+ )
+ scheduled_events_profile.terminate_notification_profile = AAZObjectArg(
+ options=["terminate-notification-profile"],
+ help="Specifies Terminate Scheduled Event related configurations.",
+ nullable=True,
+ )
+
+ os_image_notification_profile = cls._args_schema.scheduled_events_profile.os_image_notification_profile
+ os_image_notification_profile.enable = AAZBoolArg(
+ options=["enable"],
+ help="Specifies whether the OS Image Scheduled event is enabled or disabled.",
+ nullable=True,
+ )
+ os_image_notification_profile.not_before_timeout = AAZStrArg(
+ options=["not-before-timeout"],
+ help="Length of time a Virtual Machine being reimaged or having its OS upgraded will have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The configuration is specified in ISO 8601 format, and the value must be 15 minutes (PT15M)",
+ nullable=True,
+ )
+
+ terminate_notification_profile = cls._args_schema.scheduled_events_profile.terminate_notification_profile
+ terminate_notification_profile.enable = AAZBoolArg(
+ options=["enable"],
+ help="Specifies whether the Terminate Scheduled event is enabled or disabled.",
+ nullable=True,
+ )
+ terminate_notification_profile.not_before_timeout = AAZStrArg(
+ options=["not-before-timeout"],
+ help="Configurable length of time a Virtual Machine being deleted will have to potentially approve the Terminate Scheduled Event before the event is auto approved (timed out). The configuration must be specified in ISO 8601 format, the default value is 5 minutes (PT5M)",
+ nullable=True,
+ )
+
+ security_profile = cls._args_schema.security_profile
+ security_profile.encryption_at_host = AAZBoolArg(
+ options=["encryption-at-host"],
+ help="This property can be used by user in the request to enable or disable the Host Encryption for the virtual machine or virtual machine scale set. This will enable the encryption for all the disks including Resource/Temp disk at host itself. The default behavior is: The Encryption at host will be disabled unless this property is set to true for the resource.",
+ nullable=True,
+ )
+ security_profile.encryption_identity = AAZObjectArg(
+ options=["encryption-identity"],
+ help="Specifies the Managed Identity used by ADE to get access token for keyvault operations.",
+ nullable=True,
+ )
+ security_profile.proxy_agent_settings = AAZObjectArg(
+ options=["proxy-agent-settings"],
+ help="Specifies ProxyAgent settings while creating the virtual machine. Minimum api-version: 2023-09-01.",
+ nullable=True,
+ )
+ security_profile.security_type = AAZStrArg(
+ options=["security-type"],
+ help="Specifies the SecurityType of the virtual machine. It has to be set to any specified value to enable UefiSettings. The default behavior is: UefiSettings will not be enabled unless this property is set.",
+ nullable=True,
+ enum={"ConfidentialVM": "ConfidentialVM", "TrustedLaunch": "TrustedLaunch"},
+ )
+ security_profile.uefi_settings = AAZObjectArg(
+ options=["uefi-settings"],
+ help="Specifies the security settings like secure boot and vTPM used while creating the virtual machine. Minimum api-version: 2020-12-01.",
+ nullable=True,
+ )
+
+ encryption_identity = cls._args_schema.security_profile.encryption_identity
+ encryption_identity.user_assigned_identity_resource_id = AAZStrArg(
+ options=["user-assigned-identity-resource-id"],
+ help="Specifies ARM Resource ID of one of the user identities associated with the VM.",
+ nullable=True,
+ )
+
+ proxy_agent_settings = cls._args_schema.security_profile.proxy_agent_settings
+ proxy_agent_settings.enabled = AAZBoolArg(
+ options=["enabled"],
+ help="Specifies whether ProxyAgent feature should be enabled on the virtual machine or virtual machine scale set.",
+ nullable=True,
+ )
+ proxy_agent_settings.key_incarnation_id = AAZIntArg(
+ options=["key-incarnation-id"],
+ help="Increase the value of this property allows user to reset the key used for securing communication channel between guest and host.",
+ nullable=True,
+ )
+ proxy_agent_settings.mode = AAZStrArg(
+ options=["mode"],
+ help="Specifies the mode that ProxyAgent will execute on if the feature is enabled. ProxyAgent will start to audit or monitor but not enforce access control over requests to host endpoints in Audit mode, while in Enforce mode it will enforce access control. The default value is Enforce mode.",
+ nullable=True,
+ enum={"Audit": "Audit", "Enforce": "Enforce"},
+ )
+
+ uefi_settings = cls._args_schema.security_profile.uefi_settings
+ uefi_settings.secure_boot_enabled = AAZBoolArg(
+ options=["secure-boot-enabled"],
+ help="Specifies whether secure boot should be enabled on the virtual machine. Minimum api-version: 2020-12-01.",
+ nullable=True,
+ )
+ uefi_settings.v_tpm_enabled = AAZBoolArg(
+ options=["v-tpm-enabled"],
+ help="Specifies whether vTPM should be enabled on the virtual machine. Minimum api-version: 2020-12-01.",
+ nullable=True,
+ )
+
+ storage_profile = cls._args_schema.storage_profile
+ storage_profile.data_disks = AAZListArg(
+ options=["data-disks"],
+ help="Specifies the parameters that are used to add a data disk to a virtual machine. For more information about disks, see [About disks and VHDs for Azure virtual machines](https://docs.microsoft.com/azure/virtual-machines/managed-disks-overview).",
+ nullable=True,
+ )
+ storage_profile.disk_controller_type = AAZStrArg(
+ options=["disk-controller-type"],
+ help="Specifies the disk controller type configured for the VM. **Note:** This property will be set to the default disk controller type if not specified provided virtual machine is being created with 'hyperVGeneration' set to V2 based on the capabilities of the operating system disk and VM size from the the specified minimum api version. You need to deallocate the VM before updating its disk controller type unless you are updating the VM size in the VM configuration which implicitly deallocates and reallocates the VM. Minimum api-version: 2022-08-01.",
+ nullable=True,
+ enum={"NVMe": "NVMe", "SCSI": "SCSI"},
+ )
+ storage_profile.image_reference = AAZObjectArg(
+ options=["image-reference"],
+ help="Specifies information about the image to use. You can specify information about platform images, marketplace images, or virtual machine images. This element is required when you want to use a platform image, marketplace image, or virtual machine image, but is not used in other creation operations.",
+ nullable=True,
+ )
+ storage_profile.os_disk = AAZObjectArg(
+ options=["os-disk"],
+ help="Specifies information about the operating system disk used by the virtual machine. For more information about disks, see [About disks and VHDs for Azure virtual machines](https://docs.microsoft.com/azure/virtual-machines/managed-disks-overview).",
+ nullable=True,
+ )
+
+ data_disks = cls._args_schema.storage_profile.data_disks
+ data_disks.Element = AAZObjectArg(
+ nullable=True,
+ )
+
+ _element = cls._args_schema.storage_profile.data_disks.Element
+ _element.caching = AAZStrArg(
+ options=["caching"],
+ help="Specifies the caching requirements. Possible values are: **None,** **ReadOnly,** **ReadWrite.** The defaulting behavior is: **None for Standard storage. ReadOnly for Premium storage.**",
+ nullable=True,
+ enum={"None": "None", "ReadOnly": "ReadOnly", "ReadWrite": "ReadWrite"},
+ )
+ _element.create_option = AAZStrArg(
+ options=["create-option"],
+ help="Specifies how the virtual machine disk should be created. Possible values are **Attach:** This value is used when you are using a specialized disk to create the virtual machine. **FromImage:** This value is used when you are using an image to create the virtual machine data disk. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described. **Empty:** This value is used when creating an empty data disk. **Copy:** This value is used to create a data disk from a snapshot or another disk. **Restore:** This value is used to create a data disk from a disk restore point.",
+ enum={"Attach": "Attach", "Copy": "Copy", "Empty": "Empty", "FromImage": "FromImage", "Restore": "Restore"},
+ )
+ _element.delete_option = AAZStrArg(
+ options=["delete-option"],
+ help="Specifies whether data disk should be deleted or detached upon VM deletion. Possible values are: **Delete.** If this value is used, the data disk is deleted when VM is deleted. **Detach.** If this value is used, the data disk is retained after VM is deleted. The default value is set to **Detach**.",
+ nullable=True,
+ enum={"Delete": "Delete", "Detach": "Detach"},
+ )
+ _element.detach_option = AAZStrArg(
+ options=["detach-option"],
+ help="Specifies the detach behavior to be used while detaching a disk or which is already in the process of detachment from the virtual machine. Supported values: **ForceDetach.** detachOption: **ForceDetach** is applicable only for managed data disks. If a previous detachment attempt of the data disk did not complete due to an unexpected failure from the virtual machine and the disk is still not released then use force-detach as a last resort option to detach the disk forcibly from the VM. All writes might not have been flushed when using this detach behavior. To force-detach a data disk update toBeDetached to 'true' along with setting detachOption: 'ForceDetach'.",
+ nullable=True,
+ enum={"ForceDetach": "ForceDetach"},
+ )
+ _element.disk_size_gb = AAZIntArg(
+ options=["disk-size-gb"],
+ help="Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.",
+ nullable=True,
+ )
+ _element.image = AAZObjectArg(
+ options=["image"],
+ help="The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.",
+ nullable=True,
+ )
+ cls._build_args_virtual_hard_disk_update(_element.image)
+ _element.lun = AAZIntArg(
+ options=["lun"],
+ help="Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.",
+ )
+ _element.managed_disk = AAZObjectArg(
+ options=["managed-disk"],
+ help="The managed disk parameters.",
+ nullable=True,
+ )
+ cls._build_args_managed_disk_parameters_update(_element.managed_disk)
+ _element.name = AAZStrArg(
+ options=["name"],
+ help="The disk name.",
+ nullable=True,
+ )
+ _element.source_resource = AAZObjectArg(
+ options=["source-resource"],
+ help="The source resource identifier. It can be a snapshot, or disk restore point from which to create a disk.",
+ nullable=True,
+ )
+ _element.to_be_detached = AAZBoolArg(
+ options=["to-be-detached"],
+ help="Specifies whether the data disk is in process of detachment from the VirtualMachine/VirtualMachineScaleset",
+ nullable=True,
+ )
+ _element.vhd = AAZObjectArg(
+ options=["vhd"],
+ help="The virtual hard disk.",
+ nullable=True,
+ )
+ cls._build_args_virtual_hard_disk_update(_element.vhd)
+ _element.write_accelerator_enabled = AAZBoolArg(
+ options=["write-accelerator-enabled"],
+ help="Specifies whether writeAccelerator should be enabled or disabled on the disk.",
+ nullable=True,
+ )
+
+ source_resource = cls._args_schema.storage_profile.data_disks.Element.source_resource
+ source_resource.id = AAZStrArg(
+ options=["id"],
+ help="The ARM resource id in the form of /subscriptions/{SubscriptionId}/resourceGroups/{ResourceGroupName}/...",
+ nullable=True,
+ )
+
+ image_reference = cls._args_schema.storage_profile.image_reference
+ image_reference.community_gallery_image_id = AAZStrArg(
+ options=["community-gallery-image-id"],
+ help="Specified the community gallery image unique id for vm deployment. This can be fetched from community gallery image GET call.",
+ nullable=True,
+ )
+ image_reference.id = AAZStrArg(
+ options=["id"],
+ help="Resource Id",
+ nullable=True,
+ )
+ image_reference.offer = AAZStrArg(
+ options=["offer"],
+ help="Specifies the offer of the platform image or marketplace image used to create the virtual machine.",
+ nullable=True,
+ )
+ image_reference.publisher = AAZStrArg(
+ options=["publisher"],
+ help="The image publisher.",
+ nullable=True,
+ )
+ image_reference.shared_gallery_image_id = AAZStrArg(
+ options=["shared-gallery-image-id"],
+ help="Specified the shared gallery image unique id for vm deployment. This can be fetched from shared gallery image GET call.",
+ nullable=True,
+ )
+ image_reference.sku = AAZStrArg(
+ options=["sku"],
+ help="The image SKU.",
+ nullable=True,
+ )
+ image_reference.version = AAZStrArg(
+ options=["version"],
+ help="Specifies the version of the platform image or marketplace image used to create the virtual machine. The allowed formats are Major.Minor.Build or 'latest'. Major, Minor, and Build are decimal numbers. Specify 'latest' to use the latest version of an image available at deploy time. Even if you use 'latest', the VM image will not automatically update after deploy time even if a new version becomes available. Please do not use field 'version' for gallery image deployment, gallery image should always use 'id' field for deployment, to use 'latest' version of gallery image, just set '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageName}' in the 'id' field without version input.",
+ nullable=True,
+ )
+
+ os_disk = cls._args_schema.storage_profile.os_disk
+ os_disk.caching = AAZStrArg(
+ options=["caching"],
+ help="Specifies the caching requirements. Possible values are: **None,** **ReadOnly,** **ReadWrite.** The defaulting behavior is: **None for Standard storage. ReadOnly for Premium storage.**",
+ nullable=True,
+ enum={"None": "None", "ReadOnly": "ReadOnly", "ReadWrite": "ReadWrite"},
+ )
+ os_disk.create_option = AAZStrArg(
+ options=["create-option"],
+ help="Specifies how the virtual machine disk should be created. Possible values are **Attach:** This value is used when you are using a specialized disk to create the virtual machine. **FromImage:** This value is used when you are using an image to create the virtual machine. If you are using a platform image, you should also use the imageReference element described above. If you are using a marketplace image, you should also use the plan element previously described.",
+ enum={"Attach": "Attach", "Copy": "Copy", "Empty": "Empty", "FromImage": "FromImage", "Restore": "Restore"},
+ )
+ os_disk.delete_option = AAZStrArg(
+ options=["delete-option"],
+ help="Specifies whether OS Disk should be deleted or detached upon VM deletion. Possible values are: **Delete.** If this value is used, the OS disk is deleted when VM is deleted. **Detach.** If this value is used, the os disk is retained after VM is deleted. The default value is set to **Detach**. For an ephemeral OS Disk, the default value is set to **Delete**. The user cannot change the delete option for an ephemeral OS Disk.",
+ nullable=True,
+ enum={"Delete": "Delete", "Detach": "Detach"},
+ )
+ os_disk.diff_disk_settings = AAZObjectArg(
+ options=["diff-disk-settings"],
+ help="Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine.",
+ nullable=True,
+ )
+ os_disk.disk_size_gb = AAZIntArg(
+ options=["disk-size-gb"],
+ help="Specifies the size of an empty data disk in gigabytes. This element can be used to overwrite the size of the disk in a virtual machine image. The property 'diskSizeGB' is the number of bytes x 1024^3 for the disk and the value cannot be larger than 1023.",
+ nullable=True,
+ )
+ os_disk.encryption_settings = AAZObjectArg(
+ options=["encryption-settings"],
+ help="Specifies the encryption settings for the OS Disk. Minimum api-version: 2015-06-15.",
+ nullable=True,
+ )
+ os_disk.image = AAZObjectArg(
+ options=["image"],
+ help="The source user image virtual hard disk. The virtual hard disk will be copied before being attached to the virtual machine. If SourceImage is provided, the destination virtual hard drive must not exist.",
+ nullable=True,
+ )
+ cls._build_args_virtual_hard_disk_update(os_disk.image)
+ os_disk.managed_disk = AAZObjectArg(
+ options=["managed-disk"],
+ help="The managed disk parameters.",
+ nullable=True,
+ )
+ cls._build_args_managed_disk_parameters_update(os_disk.managed_disk)
+ os_disk.name = AAZStrArg(
+ options=["name"],
+ help="The disk name.",
+ nullable=True,
+ )
+ os_disk.os_type = AAZStrArg(
+ options=["os-type"],
+ help="This property allows you to specify the type of the OS that is included in the disk if creating a VM from user-image or a specialized VHD. Possible values are: **Windows,** **Linux.**",
+ nullable=True,
+ enum={"Linux": "Linux", "Windows": "Windows"},
+ )
+ os_disk.vhd = AAZObjectArg(
+ options=["vhd"],
+ help="The virtual hard disk.",
+ nullable=True,
+ )
+ cls._build_args_virtual_hard_disk_update(os_disk.vhd)
+ os_disk.write_accelerator_enabled = AAZBoolArg(
+ options=["write-accelerator-enabled"],
+ help="Specifies whether writeAccelerator should be enabled or disabled on the disk.",
+ nullable=True,
+ )
+
+ diff_disk_settings = cls._args_schema.storage_profile.os_disk.diff_disk_settings
+ diff_disk_settings.option = AAZStrArg(
+ options=["option"],
+ help="Specifies the ephemeral disk settings for operating system disk.",
+ nullable=True,
+ enum={"Local": "Local"},
+ )
+ diff_disk_settings.placement = AAZStrArg(
+ options=["placement"],
+ help="Specifies the ephemeral disk placement for operating system disk. Possible values are: **CacheDisk,** **ResourceDisk,** **NvmeDisk.** The defaulting behavior is: **CacheDisk** if one is configured for the VM size otherwise **ResourceDisk** or **NvmeDisk** is used. Refer to the VM size documentation for Windows VM at https://docs.microsoft.com/azure/virtual-machines/windows/sizes and Linux VM at https://docs.microsoft.com/azure/virtual-machines/linux/sizes to check which VM sizes exposes a cache disk. Minimum api-version for NvmeDisk: 2024-03-01.",
+ nullable=True,
+ enum={"CacheDisk": "CacheDisk", "NvmeDisk": "NvmeDisk", "ResourceDisk": "ResourceDisk"},
+ )
+
+ encryption_settings = cls._args_schema.storage_profile.os_disk.encryption_settings
+ encryption_settings.disk_encryption_key = AAZObjectArg(
+ options=["disk-encryption-key"],
+ help="Specifies the location of the disk encryption key, which is a Key Vault Secret.",
+ nullable=True,
+ )
+ encryption_settings.enabled = AAZBoolArg(
+ options=["enabled"],
+ help="Specifies whether disk encryption should be enabled on the virtual machine.",
+ nullable=True,
+ )
+ encryption_settings.key_encryption_key = AAZObjectArg(
+ options=["key-encryption-key"],
+ help="Specifies the location of the key encryption key in Key Vault.",
+ nullable=True,
+ )
+
+ disk_encryption_key = cls._args_schema.storage_profile.os_disk.encryption_settings.disk_encryption_key
+ disk_encryption_key.secret_url = AAZStrArg(
+ options=["secret-url"],
+ help="The URL referencing a secret in a Key Vault.",
+ )
+ disk_encryption_key.source_vault = AAZObjectArg(
+ options=["source-vault"],
+ help="The relative URL of the Key Vault containing the secret.",
+ )
+ cls._build_args_sub_resource_update(disk_encryption_key.source_vault)
+
+ key_encryption_key = cls._args_schema.storage_profile.os_disk.encryption_settings.key_encryption_key
+ key_encryption_key.key_url = AAZStrArg(
+ options=["key-url"],
+ help="The URL referencing a key encryption key in Key Vault.",
+ )
+ key_encryption_key.source_vault = AAZObjectArg(
+ options=["source-vault"],
+ help="The relative URL of the Key Vault containing the key.",
+ )
+ cls._build_args_sub_resource_update(key_encryption_key.source_vault)
+ return cls._args_schema
+
+ _args_disk_encryption_set_parameters_update = None
+
+ @classmethod
+ def _build_args_disk_encryption_set_parameters_update(cls, _schema):
+ if cls._args_disk_encryption_set_parameters_update is not None:
+ _schema.id = cls._args_disk_encryption_set_parameters_update.id
+ return
+
+ cls._args_disk_encryption_set_parameters_update = AAZObjectArg(
+ nullable=True,
+ )
+
+ disk_encryption_set_parameters_update = cls._args_disk_encryption_set_parameters_update
+ disk_encryption_set_parameters_update.id = AAZStrArg(
+ options=["id"],
+ help="Resource Id",
+ nullable=True,
+ )
+
+ _schema.id = cls._args_disk_encryption_set_parameters_update.id
+
+ _args_managed_disk_parameters_update = None
+
+ @classmethod
+ def _build_args_managed_disk_parameters_update(cls, _schema):
+ if cls._args_managed_disk_parameters_update is not None:
+ _schema.disk_encryption_set = cls._args_managed_disk_parameters_update.disk_encryption_set
+ _schema.id = cls._args_managed_disk_parameters_update.id
+ _schema.security_profile = cls._args_managed_disk_parameters_update.security_profile
+ _schema.storage_account_type = cls._args_managed_disk_parameters_update.storage_account_type
+ return
+
+ cls._args_managed_disk_parameters_update = AAZObjectArg(
+ nullable=True,
+ )
+
+ managed_disk_parameters_update = cls._args_managed_disk_parameters_update
+ managed_disk_parameters_update.disk_encryption_set = AAZObjectArg(
+ options=["disk-encryption-set"],
+ help="Specifies the customer managed disk encryption set resource id for the managed disk.",
+ nullable=True,
+ )
+ cls._build_args_disk_encryption_set_parameters_update(managed_disk_parameters_update.disk_encryption_set)
+ managed_disk_parameters_update.id = AAZStrArg(
+ options=["id"],
+ help="Resource Id",
+ nullable=True,
+ )
+ managed_disk_parameters_update.security_profile = AAZObjectArg(
+ options=["security-profile"],
+ help="Specifies the security profile for the managed disk.",
+ nullable=True,
+ )
+ managed_disk_parameters_update.storage_account_type = AAZStrArg(
+ options=["storage-account-type"],
+ help="Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used with data disks, it cannot be used with OS Disk.",
+ nullable=True,
+ enum={"PremiumV2_LRS": "PremiumV2_LRS", "Premium_LRS": "Premium_LRS", "Premium_ZRS": "Premium_ZRS", "StandardSSD_LRS": "StandardSSD_LRS", "StandardSSD_ZRS": "StandardSSD_ZRS", "Standard_LRS": "Standard_LRS", "UltraSSD_LRS": "UltraSSD_LRS"},
+ )
+
+ security_profile = cls._args_managed_disk_parameters_update.security_profile
+ security_profile.disk_encryption_set = AAZObjectArg(
+ options=["disk-encryption-set"],
+ help="Specifies the customer managed disk encryption set resource id for the managed disk that is used for Customer Managed Key encrypted ConfidentialVM OS Disk and VMGuest blob.",
+ nullable=True,
+ )
+ cls._build_args_disk_encryption_set_parameters_update(security_profile.disk_encryption_set)
+ security_profile.security_encryption_type = AAZStrArg(
+ options=["security-encryption-type"],
+ help="Specifies the EncryptionType of the managed disk. It is set to DiskWithVMGuestState for encryption of the managed disk along with VMGuestState blob, VMGuestStateOnly for encryption of just the VMGuestState blob, and NonPersistedTPM for not persisting firmware state in the VMGuestState blob.. **Note:** It can be set for only Confidential VMs.",
+ nullable=True,
+ enum={"DiskWithVMGuestState": "DiskWithVMGuestState", "NonPersistedTPM": "NonPersistedTPM", "VMGuestStateOnly": "VMGuestStateOnly"},
+ )
+
+ _schema.disk_encryption_set = cls._args_managed_disk_parameters_update.disk_encryption_set
+ _schema.id = cls._args_managed_disk_parameters_update.id
+ _schema.security_profile = cls._args_managed_disk_parameters_update.security_profile
+ _schema.storage_account_type = cls._args_managed_disk_parameters_update.storage_account_type
+
+ _args_sub_resource_update = None
+
+ @classmethod
+ def _build_args_sub_resource_update(cls, _schema):
+ if cls._args_sub_resource_update is not None:
+ _schema.id = cls._args_sub_resource_update.id
+ return
+
+ cls._args_sub_resource_update = AAZObjectArg()
+
+ sub_resource_update = cls._args_sub_resource_update
+ sub_resource_update.id = AAZStrArg(
+ options=["id"],
+ help="Resource Id",
+ nullable=True,
+ )
+
+ _schema.id = cls._args_sub_resource_update.id
+
+ _args_virtual_hard_disk_update = None
+
+ @classmethod
+ def _build_args_virtual_hard_disk_update(cls, _schema):
+ if cls._args_virtual_hard_disk_update is not None:
+ _schema.uri = cls._args_virtual_hard_disk_update.uri
+ return
+
+ cls._args_virtual_hard_disk_update = AAZObjectArg(
+ nullable=True,
+ )
+
+ virtual_hard_disk_update = cls._args_virtual_hard_disk_update
+ virtual_hard_disk_update.uri = AAZStrArg(
+ options=["uri"],
+ help="Specifies the virtual hard disk's uri.",
+ nullable=True,
+ )
+
+ _schema.uri = cls._args_virtual_hard_disk_update.uri
+
+ def _execute_operations(self):
+ self.pre_operations()
+ self.VirtualMachinesGet(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)
+ yield self.VirtualMachinesCreateOrUpdate(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 VirtualMachinesGet(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/virtualMachines/{vmName}",
+ **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,
+ ),
+ **self.serialize_url_param(
+ "vmName", self.ctx.args.vm_name,
+ 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_virtual_machine_read(cls._schema_on_200)
+
+ return cls._schema_on_200
+
+ class VirtualMachinesCreateOrUpdate(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 [202]:
+ return self.client.build_lro_polling(
+ self.ctx.args.no_wait,
+ session,
+ self.on_200_201,
+ self.on_error,
+ lro_options={"final-state-via": "azure-async-operation"},
+ path_format_arguments=self.url_parameters,
+ )
+ if session.http_response.status_code in [200, 201]:
+ return self.client.build_lro_polling(
+ self.ctx.args.no_wait,
+ session,
+ self.on_200_201,
+ self.on_error,
+ lro_options={"final-state-via": "azure-async-operation"},
+ path_format_arguments=self.url_parameters,
+ )
+
+ return self.on_error(session.http_response)
+
+ @property
+ def url(self):
+ return self.client.format_url(
+ "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}",
+ **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(
+ "resourceGroupName", self.ctx.args.resource_group,
+ required=True,
+ ),
+ **self.serialize_url_param(
+ "subscriptionId", self.ctx.subscription_id,
+ required=True,
+ ),
+ **self.serialize_url_param(
+ "vmName", self.ctx.args.vm_name,
+ 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(
+ "If-Match", self.ctx.args.if_match,
+ ),
+ **self.serialize_header_param(
+ "If-None-Match", self.ctx.args.if_none_match,
+ ),
+ **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_virtual_machine_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("extendedLocation", AAZObjectType, ".extended_location")
+ _builder.set_prop("identity", AAZIdentityObjectType)
+ _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}})
+ _builder.set_prop("plan", AAZObjectType, ".plan")
+ _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}})
+ _builder.set_prop("tags", AAZDictType, ".tags")
+ _builder.set_prop("zones", AAZListType, ".zones")
+
+ extended_location = _builder.get(".extendedLocation")
+ if extended_location is not None:
+ extended_location.set_prop("name", AAZStrType, ".name")
+ extended_location.set_prop("type", AAZStrType, ".type")
+
+ plan = _builder.get(".plan")
+ if plan is not None:
+ plan.set_prop("name", AAZStrType, ".name")
+ plan.set_prop("product", AAZStrType, ".product")
+ plan.set_prop("promotionCode", AAZStrType, ".promotion_code")
+ plan.set_prop("publisher", AAZStrType, ".publisher")
+
+ properties = _builder.get(".properties")
+ if properties is not None:
+ properties.set_prop("additionalCapabilities", AAZObjectType, ".additional_capabilities")
+ properties.set_prop("applicationProfile", AAZObjectType, ".application_profile")
+ _UpdateHelper._build_schema_sub_resource_update(properties.set_prop("availabilitySet", AAZObjectType, ".availability_set"))
+ properties.set_prop("billingProfile", AAZObjectType, ".billing_profile")
+ properties.set_prop("capacityReservation", AAZObjectType, ".capacity_reservation")
+ properties.set_prop("diagnosticsProfile", AAZObjectType, ".diagnostics_profile")
+ properties.set_prop("evictionPolicy", AAZStrType, ".eviction_policy")
+ properties.set_prop("extensionsTimeBudget", AAZStrType, ".extensions_time_budget")
+ properties.set_prop("hardwareProfile", AAZObjectType, ".hardware_profile")
+ _UpdateHelper._build_schema_sub_resource_update(properties.set_prop("host", AAZObjectType, ".host"))
+ _UpdateHelper._build_schema_sub_resource_update(properties.set_prop("hostGroup", AAZObjectType, ".host_group"))
+ properties.set_prop("licenseType", AAZStrType, ".license_type")
+ properties.set_prop("networkProfile", AAZObjectType, ".network_profile")
+ properties.set_prop("osProfile", AAZObjectType, ".os_profile")
+ properties.set_prop("platformFaultDomain", AAZIntType, ".platform_fault_domain")
+ properties.set_prop("priority", AAZStrType, ".priority")
+ _UpdateHelper._build_schema_sub_resource_update(properties.set_prop("proximityPlacementGroup", AAZObjectType, ".proximity_placement_group"))
+ properties.set_prop("scheduledEventsPolicy", AAZObjectType, ".scheduled_events_policy")
+ properties.set_prop("scheduledEventsProfile", AAZObjectType, ".scheduled_events_profile")
+ properties.set_prop("securityProfile", AAZObjectType, ".security_profile")
+ properties.set_prop("storageProfile", AAZObjectType, ".storage_profile")
+ properties.set_prop("userData", AAZStrType, ".user_data")
+ _UpdateHelper._build_schema_sub_resource_update(properties.set_prop("virtualMachineScaleSet", AAZObjectType, ".virtual_machine_scale_set"))
+
+ additional_capabilities = _builder.get(".properties.additionalCapabilities")
+ if additional_capabilities is not None:
+ additional_capabilities.set_prop("hibernationEnabled", AAZBoolType, ".hibernation_enabled")
+ additional_capabilities.set_prop("ultraSSDEnabled", AAZBoolType, ".ultra_ssd_enabled")
+
+ application_profile = _builder.get(".properties.applicationProfile")
+ if application_profile is not None:
+ application_profile.set_prop("galleryApplications", AAZListType, ".gallery_applications")
+
+ gallery_applications = _builder.get(".properties.applicationProfile.galleryApplications")
+ if gallery_applications is not None:
+ gallery_applications.set_elements(AAZObjectType, ".")
+
+ _elements = _builder.get(".properties.applicationProfile.galleryApplications[]")
+ if _elements is not None:
+ _elements.set_prop("configurationReference", AAZStrType, ".configuration_reference")
+ _elements.set_prop("enableAutomaticUpgrade", AAZBoolType, ".enable_automatic_upgrade")
+ _elements.set_prop("order", AAZIntType, ".order")
+ _elements.set_prop("packageReferenceId", AAZStrType, ".package_reference_id", typ_kwargs={"flags": {"required": True}})
+ _elements.set_prop("tags", AAZStrType, ".tags")
+ _elements.set_prop("treatFailureAsDeploymentFailure", AAZBoolType, ".treat_failure_as_deployment_failure")
+
+ billing_profile = _builder.get(".properties.billingProfile")
+ if billing_profile is not None:
+ billing_profile.set_prop("maxPrice", AAZFloatType, ".max_price")
+
+ capacity_reservation = _builder.get(".properties.capacityReservation")
+ if capacity_reservation is not None:
+ _UpdateHelper._build_schema_sub_resource_update(capacity_reservation.set_prop("capacityReservationGroup", AAZObjectType, ".capacity_reservation_group"))
+
+ diagnostics_profile = _builder.get(".properties.diagnosticsProfile")
+ if diagnostics_profile is not None:
+ diagnostics_profile.set_prop("bootDiagnostics", AAZObjectType, ".boot_diagnostics")
+
+ boot_diagnostics = _builder.get(".properties.diagnosticsProfile.bootDiagnostics")
+ if boot_diagnostics is not None:
+ boot_diagnostics.set_prop("enabled", AAZBoolType, ".enabled")
+ boot_diagnostics.set_prop("storageUri", AAZStrType, ".storage_uri")
+
+ hardware_profile = _builder.get(".properties.hardwareProfile")
+ if hardware_profile is not None:
+ hardware_profile.set_prop("vmSize", AAZStrType, ".vm_size")
+ hardware_profile.set_prop("vmSizeProperties", AAZObjectType, ".vm_size_properties")
+
+ vm_size_properties = _builder.get(".properties.hardwareProfile.vmSizeProperties")
+ if vm_size_properties is not None:
+ vm_size_properties.set_prop("vCPUsAvailable", AAZIntType, ".v_cp_us_available")
+ vm_size_properties.set_prop("vCPUsPerCore", AAZIntType, ".v_cp_us_per_core")
+
+ network_profile = _builder.get(".properties.networkProfile")
+ if network_profile is not None:
+ network_profile.set_prop("networkApiVersion", AAZStrType, ".network_api_version")
+ network_profile.set_prop("networkInterfaceConfigurations", AAZListType, ".network_interface_configurations")
+ network_profile.set_prop("networkInterfaces", AAZListType, ".network_interfaces")
+
+ network_interface_configurations = _builder.get(".properties.networkProfile.networkInterfaceConfigurations")
+ if network_interface_configurations is not None:
+ network_interface_configurations.set_elements(AAZObjectType, ".")
+
+ _elements = _builder.get(".properties.networkProfile.networkInterfaceConfigurations[]")
+ if _elements is not None:
+ _elements.set_prop("name", AAZStrType, ".name", typ_kwargs={"flags": {"required": True}})
+ _elements.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}})
+
+ properties = _builder.get(".properties.networkProfile.networkInterfaceConfigurations[].properties")
+ if properties is not None:
+ properties.set_prop("auxiliaryMode", AAZStrType, ".auxiliary_mode")
+ properties.set_prop("auxiliarySku", AAZStrType, ".auxiliary_sku")
+ properties.set_prop("deleteOption", AAZStrType, ".delete_option")
+ properties.set_prop("disableTcpStateTracking", AAZBoolType, ".disable_tcp_state_tracking")
+ properties.set_prop("dnsSettings", AAZObjectType, ".dns_settings")
+ _UpdateHelper._build_schema_sub_resource_update(properties.set_prop("dscpConfiguration", AAZObjectType, ".dscp_configuration"))
+ properties.set_prop("enableAcceleratedNetworking", AAZBoolType, ".enable_accelerated_networking")
+ properties.set_prop("enableFpga", AAZBoolType, ".enable_fpga")
+ properties.set_prop("enableIPForwarding", AAZBoolType, ".enable_ip_forwarding")
+ properties.set_prop("ipConfigurations", AAZListType, ".ip_configurations", typ_kwargs={"flags": {"required": True}})
+ _UpdateHelper._build_schema_sub_resource_update(properties.set_prop("networkSecurityGroup", AAZObjectType, ".network_security_group"))
+ properties.set_prop("primary", AAZBoolType, ".primary")
+
+ dns_settings = _builder.get(".properties.networkProfile.networkInterfaceConfigurations[].properties.dnsSettings")
+ if dns_settings is not None:
+ dns_settings.set_prop("dnsServers", AAZListType, ".dns_servers")
+
+ dns_servers = _builder.get(".properties.networkProfile.networkInterfaceConfigurations[].properties.dnsSettings.dnsServers")
+ if dns_servers is not None:
+ dns_servers.set_elements(AAZStrType, ".")
+
+ ip_configurations = _builder.get(".properties.networkProfile.networkInterfaceConfigurations[].properties.ipConfigurations")
+ if ip_configurations is not None:
+ ip_configurations.set_elements(AAZObjectType, ".")
+
+ _elements = _builder.get(".properties.networkProfile.networkInterfaceConfigurations[].properties.ipConfigurations[]")
+ if _elements is not None:
+ _elements.set_prop("name", AAZStrType, ".name", typ_kwargs={"flags": {"required": True}})
+ _elements.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}})
+
+ properties = _builder.get(".properties.networkProfile.networkInterfaceConfigurations[].properties.ipConfigurations[].properties")
+ if properties is not None:
+ properties.set_prop("applicationGatewayBackendAddressPools", AAZListType, ".application_gateway_backend_address_pools")
+ properties.set_prop("applicationSecurityGroups", AAZListType, ".application_security_groups")
+ properties.set_prop("loadBalancerBackendAddressPools", AAZListType, ".load_balancer_backend_address_pools")
+ properties.set_prop("primary", AAZBoolType, ".primary")
+ properties.set_prop("privateIPAddressVersion", AAZStrType, ".private_ip_address_version")
+ properties.set_prop("publicIPAddressConfiguration", AAZObjectType, ".public_ip_address_configuration")
+ _UpdateHelper._build_schema_sub_resource_update(properties.set_prop("subnet", AAZObjectType, ".subnet"))
+
+ application_gateway_backend_address_pools = _builder.get(".properties.networkProfile.networkInterfaceConfigurations[].properties.ipConfigurations[].properties.applicationGatewayBackendAddressPools")
+ if application_gateway_backend_address_pools is not None:
+ _UpdateHelper._build_schema_sub_resource_update(application_gateway_backend_address_pools.set_elements(AAZObjectType, "."))
+
+ application_security_groups = _builder.get(".properties.networkProfile.networkInterfaceConfigurations[].properties.ipConfigurations[].properties.applicationSecurityGroups")
+ if application_security_groups is not None:
+ _UpdateHelper._build_schema_sub_resource_update(application_security_groups.set_elements(AAZObjectType, "."))
+
+ load_balancer_backend_address_pools = _builder.get(".properties.networkProfile.networkInterfaceConfigurations[].properties.ipConfigurations[].properties.loadBalancerBackendAddressPools")
+ if load_balancer_backend_address_pools is not None:
+ _UpdateHelper._build_schema_sub_resource_update(load_balancer_backend_address_pools.set_elements(AAZObjectType, "."))
+
+ public_ip_address_configuration = _builder.get(".properties.networkProfile.networkInterfaceConfigurations[].properties.ipConfigurations[].properties.publicIPAddressConfiguration")
+ if public_ip_address_configuration is not None:
+ public_ip_address_configuration.set_prop("name", AAZStrType, ".name", typ_kwargs={"flags": {"required": True}})
+ public_ip_address_configuration.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}})
+ public_ip_address_configuration.set_prop("sku", AAZObjectType, ".sku")
+
+ properties = _builder.get(".properties.networkProfile.networkInterfaceConfigurations[].properties.ipConfigurations[].properties.publicIPAddressConfiguration.properties")
+ if properties is not None:
+ properties.set_prop("deleteOption", AAZStrType, ".delete_option")
+ properties.set_prop("dnsSettings", AAZObjectType, ".dns_settings")
+ properties.set_prop("idleTimeoutInMinutes", AAZIntType, ".idle_timeout_in_minutes")
+ properties.set_prop("ipTags", AAZListType, ".ip_tags")
+ properties.set_prop("publicIPAddressVersion", AAZStrType, ".public_ip_address_version")
+ properties.set_prop("publicIPAllocationMethod", AAZStrType, ".public_ip_allocation_method")
+ _UpdateHelper._build_schema_sub_resource_update(properties.set_prop("publicIPPrefix", AAZObjectType, ".public_ip_prefix"))
+
+ dns_settings = _builder.get(".properties.networkProfile.networkInterfaceConfigurations[].properties.ipConfigurations[].properties.publicIPAddressConfiguration.properties.dnsSettings")
+ if dns_settings is not None:
+ dns_settings.set_prop("domainNameLabel", AAZStrType, ".domain_name_label", typ_kwargs={"flags": {"required": True}})
+ dns_settings.set_prop("domainNameLabelScope", AAZStrType, ".domain_name_label_scope")
+
+ ip_tags = _builder.get(".properties.networkProfile.networkInterfaceConfigurations[].properties.ipConfigurations[].properties.publicIPAddressConfiguration.properties.ipTags")
+ if ip_tags is not None:
+ ip_tags.set_elements(AAZObjectType, ".")
+
+ _elements = _builder.get(".properties.networkProfile.networkInterfaceConfigurations[].properties.ipConfigurations[].properties.publicIPAddressConfiguration.properties.ipTags[]")
+ if _elements is not None:
+ _elements.set_prop("ipTagType", AAZStrType, ".ip_tag_type")
+ _elements.set_prop("tag", AAZStrType, ".tag")
+
+ sku = _builder.get(".properties.networkProfile.networkInterfaceConfigurations[].properties.ipConfigurations[].properties.publicIPAddressConfiguration.sku")
+ if sku is not None:
+ sku.set_prop("name", AAZStrType, ".name")
+ sku.set_prop("tier", AAZStrType, ".tier")
+
+ network_interfaces = _builder.get(".properties.networkProfile.networkInterfaces")
+ if network_interfaces is not None:
+ network_interfaces.set_elements(AAZObjectType, ".")
+
+ _elements = _builder.get(".properties.networkProfile.networkInterfaces[]")
+ if _elements is not None:
+ _elements.set_prop("id", AAZStrType, ".id")
+ _elements.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}})
+
+ properties = _builder.get(".properties.networkProfile.networkInterfaces[].properties")
+ if properties is not None:
+ properties.set_prop("deleteOption", AAZStrType, ".delete_option")
+ properties.set_prop("primary", AAZBoolType, ".primary")
+
+ os_profile = _builder.get(".properties.osProfile")
+ if os_profile is not None:
+ os_profile.set_prop("adminPassword", AAZStrType, ".admin_password", typ_kwargs={"flags": {"secret": True}})
+ os_profile.set_prop("adminUsername", AAZStrType, ".admin_username")
+ os_profile.set_prop("allowExtensionOperations", AAZBoolType, ".allow_extension_operations")
+ os_profile.set_prop("computerName", AAZStrType, ".computer_name")
+ os_profile.set_prop("customData", AAZStrType, ".custom_data")
+ os_profile.set_prop("linuxConfiguration", AAZObjectType, ".linux_configuration")
+ os_profile.set_prop("requireGuestProvisionSignal", AAZBoolType, ".require_guest_provision_signal")
+ os_profile.set_prop("secrets", AAZListType, ".secrets")
+ os_profile.set_prop("windowsConfiguration", AAZObjectType, ".windows_configuration")
+
+ linux_configuration = _builder.get(".properties.osProfile.linuxConfiguration")
+ if linux_configuration is not None:
+ linux_configuration.set_prop("disablePasswordAuthentication", AAZBoolType, ".disable_password_authentication")
+ linux_configuration.set_prop("enableVMAgentPlatformUpdates", AAZBoolType, ".enable_vm_agent_platform_updates")
+ linux_configuration.set_prop("patchSettings", AAZObjectType, ".patch_settings")
+ linux_configuration.set_prop("provisionVMAgent", AAZBoolType, ".provision_vm_agent")
+ linux_configuration.set_prop("ssh", AAZObjectType, ".ssh")
+
+ patch_settings = _builder.get(".properties.osProfile.linuxConfiguration.patchSettings")
+ if patch_settings is not None:
+ patch_settings.set_prop("assessmentMode", AAZStrType, ".assessment_mode")
+ patch_settings.set_prop("automaticByPlatformSettings", AAZObjectType, ".automatic_by_platform_settings")
+ patch_settings.set_prop("patchMode", AAZStrType, ".patch_mode")
+
+ automatic_by_platform_settings = _builder.get(".properties.osProfile.linuxConfiguration.patchSettings.automaticByPlatformSettings")
+ if automatic_by_platform_settings is not None:
+ automatic_by_platform_settings.set_prop("bypassPlatformSafetyChecksOnUserSchedule", AAZBoolType, ".bypass_platform_safety_checks_on_user_schedule")
+ automatic_by_platform_settings.set_prop("rebootSetting", AAZStrType, ".reboot_setting")
+
+ ssh = _builder.get(".properties.osProfile.linuxConfiguration.ssh")
+ if ssh is not None:
+ ssh.set_prop("publicKeys", AAZListType, ".public_keys")
+
+ public_keys = _builder.get(".properties.osProfile.linuxConfiguration.ssh.publicKeys")
+ if public_keys is not None:
+ public_keys.set_elements(AAZObjectType, ".")
+
+ _elements = _builder.get(".properties.osProfile.linuxConfiguration.ssh.publicKeys[]")
+ if _elements is not None:
+ _elements.set_prop("keyData", AAZStrType, ".key_data")
+ _elements.set_prop("path", AAZStrType, ".path")
+
+ secrets = _builder.get(".properties.osProfile.secrets")
+ if secrets is not None:
+ secrets.set_elements(AAZObjectType, ".")
+
+ _elements = _builder.get(".properties.osProfile.secrets[]")
+ if _elements is not None:
+ _UpdateHelper._build_schema_sub_resource_update(_elements.set_prop("sourceVault", AAZObjectType, ".source_vault"))
+ _elements.set_prop("vaultCertificates", AAZListType, ".vault_certificates")
+
+ vault_certificates = _builder.get(".properties.osProfile.secrets[].vaultCertificates")
+ if vault_certificates is not None:
+ vault_certificates.set_elements(AAZObjectType, ".")
+
+ _elements = _builder.get(".properties.osProfile.secrets[].vaultCertificates[]")
+ if _elements is not None:
+ _elements.set_prop("certificateStore", AAZStrType, ".certificate_store")
+ _elements.set_prop("certificateUrl", AAZStrType, ".certificate_url")
+
+ windows_configuration = _builder.get(".properties.osProfile.windowsConfiguration")
+ if windows_configuration is not None:
+ windows_configuration.set_prop("additionalUnattendContent", AAZListType, ".additional_unattend_content")
+ windows_configuration.set_prop("enableAutomaticUpdates", AAZBoolType, ".enable_automatic_updates")
+ windows_configuration.set_prop("patchSettings", AAZObjectType, ".patch_settings")
+ windows_configuration.set_prop("provisionVMAgent", AAZBoolType, ".provision_vm_agent")
+ windows_configuration.set_prop("timeZone", AAZStrType, ".time_zone")
+ windows_configuration.set_prop("winRM", AAZObjectType, ".win_rm")
+
+ additional_unattend_content = _builder.get(".properties.osProfile.windowsConfiguration.additionalUnattendContent")
+ if additional_unattend_content is not None:
+ additional_unattend_content.set_elements(AAZObjectType, ".")
+
+ _elements = _builder.get(".properties.osProfile.windowsConfiguration.additionalUnattendContent[]")
+ if _elements is not None:
+ _elements.set_prop("componentName", AAZStrType, ".component_name")
+ _elements.set_prop("content", AAZStrType, ".content")
+ _elements.set_prop("passName", AAZStrType, ".pass_name")
+ _elements.set_prop("settingName", AAZStrType, ".setting_name")
+
+ patch_settings = _builder.get(".properties.osProfile.windowsConfiguration.patchSettings")
+ if patch_settings is not None:
+ patch_settings.set_prop("assessmentMode", AAZStrType, ".assessment_mode")
+ patch_settings.set_prop("automaticByPlatformSettings", AAZObjectType, ".automatic_by_platform_settings")
+ patch_settings.set_prop("enableHotpatching", AAZBoolType, ".enable_hotpatching")
+ patch_settings.set_prop("patchMode", AAZStrType, ".patch_mode")
+
+ automatic_by_platform_settings = _builder.get(".properties.osProfile.windowsConfiguration.patchSettings.automaticByPlatformSettings")
+ if automatic_by_platform_settings is not None:
+ automatic_by_platform_settings.set_prop("bypassPlatformSafetyChecksOnUserSchedule", AAZBoolType, ".bypass_platform_safety_checks_on_user_schedule")
+ automatic_by_platform_settings.set_prop("rebootSetting", AAZStrType, ".reboot_setting")
+
+ win_rm = _builder.get(".properties.osProfile.windowsConfiguration.winRM")
+ if win_rm is not None:
+ win_rm.set_prop("listeners", AAZListType, ".listeners")
+
+ listeners = _builder.get(".properties.osProfile.windowsConfiguration.winRM.listeners")
+ if listeners is not None:
+ listeners.set_elements(AAZObjectType, ".")
+
+ _elements = _builder.get(".properties.osProfile.windowsConfiguration.winRM.listeners[]")
+ if _elements is not None:
+ _elements.set_prop("certificateUrl", AAZStrType, ".certificate_url")
+ _elements.set_prop("protocol", AAZStrType, ".protocol")
+
+ scheduled_events_policy = _builder.get(".properties.scheduledEventsPolicy")
+ if scheduled_events_policy is not None:
+ scheduled_events_policy.set_prop("scheduledEventsAdditionalPublishingTargets", AAZObjectType, ".scheduled_events_additional_publishing_targets")
+ scheduled_events_policy.set_prop("userInitiatedReboot", AAZObjectType, ".user_initiated_reboot")
+ scheduled_events_policy.set_prop("userInitiatedRedeploy", AAZObjectType, ".user_initiated_redeploy")
+
+ scheduled_events_additional_publishing_targets = _builder.get(".properties.scheduledEventsPolicy.scheduledEventsAdditionalPublishingTargets")
+ if scheduled_events_additional_publishing_targets is not None:
+ scheduled_events_additional_publishing_targets.set_prop("eventGridAndResourceGraph", AAZObjectType, ".event_grid_and_resource_graph")
+
+ event_grid_and_resource_graph = _builder.get(".properties.scheduledEventsPolicy.scheduledEventsAdditionalPublishingTargets.eventGridAndResourceGraph")
+ if event_grid_and_resource_graph is not None:
+ event_grid_and_resource_graph.set_prop("enable", AAZBoolType, ".enable")
+
+ user_initiated_reboot = _builder.get(".properties.scheduledEventsPolicy.userInitiatedReboot")
+ if user_initiated_reboot is not None:
+ user_initiated_reboot.set_prop("automaticallyApprove", AAZBoolType, ".automatically_approve")
+
+ user_initiated_redeploy = _builder.get(".properties.scheduledEventsPolicy.userInitiatedRedeploy")
+ if user_initiated_redeploy is not None:
+ user_initiated_redeploy.set_prop("automaticallyApprove", AAZBoolType, ".automatically_approve")
+
+ scheduled_events_profile = _builder.get(".properties.scheduledEventsProfile")
+ if scheduled_events_profile is not None:
+ scheduled_events_profile.set_prop("osImageNotificationProfile", AAZObjectType, ".os_image_notification_profile")
+ scheduled_events_profile.set_prop("terminateNotificationProfile", AAZObjectType, ".terminate_notification_profile")
+
+ os_image_notification_profile = _builder.get(".properties.scheduledEventsProfile.osImageNotificationProfile")
+ if os_image_notification_profile is not None:
+ os_image_notification_profile.set_prop("enable", AAZBoolType, ".enable")
+ os_image_notification_profile.set_prop("notBeforeTimeout", AAZStrType, ".not_before_timeout")
+
+ terminate_notification_profile = _builder.get(".properties.scheduledEventsProfile.terminateNotificationProfile")
+ if terminate_notification_profile is not None:
+ terminate_notification_profile.set_prop("enable", AAZBoolType, ".enable")
+ terminate_notification_profile.set_prop("notBeforeTimeout", AAZStrType, ".not_before_timeout")
+
+ security_profile = _builder.get(".properties.securityProfile")
+ if security_profile is not None:
+ security_profile.set_prop("encryptionAtHost", AAZBoolType, ".encryption_at_host")
+ security_profile.set_prop("encryptionIdentity", AAZObjectType, ".encryption_identity")
+ security_profile.set_prop("proxyAgentSettings", AAZObjectType, ".proxy_agent_settings")
+ security_profile.set_prop("securityType", AAZStrType, ".security_type")
+ security_profile.set_prop("uefiSettings", AAZObjectType, ".uefi_settings")
+
+ encryption_identity = _builder.get(".properties.securityProfile.encryptionIdentity")
+ if encryption_identity is not None:
+ encryption_identity.set_prop("userAssignedIdentityResourceId", AAZStrType, ".user_assigned_identity_resource_id")
+
+ proxy_agent_settings = _builder.get(".properties.securityProfile.proxyAgentSettings")
+ if proxy_agent_settings is not None:
+ proxy_agent_settings.set_prop("enabled", AAZBoolType, ".enabled")
+ proxy_agent_settings.set_prop("keyIncarnationId", AAZIntType, ".key_incarnation_id")
+ proxy_agent_settings.set_prop("mode", AAZStrType, ".mode")
+
+ uefi_settings = _builder.get(".properties.securityProfile.uefiSettings")
+ if uefi_settings is not None:
+ uefi_settings.set_prop("secureBootEnabled", AAZBoolType, ".secure_boot_enabled")
+ uefi_settings.set_prop("vTpmEnabled", AAZBoolType, ".v_tpm_enabled")
+
+ storage_profile = _builder.get(".properties.storageProfile")
+ if storage_profile is not None:
+ storage_profile.set_prop("dataDisks", AAZListType, ".data_disks")
+ storage_profile.set_prop("diskControllerType", AAZStrType, ".disk_controller_type")
+ storage_profile.set_prop("imageReference", AAZObjectType, ".image_reference")
+ storage_profile.set_prop("osDisk", AAZObjectType, ".os_disk")
+
+ data_disks = _builder.get(".properties.storageProfile.dataDisks")
+ if data_disks is not None:
+ data_disks.set_elements(AAZObjectType, ".")
+
+ _elements = _builder.get(".properties.storageProfile.dataDisks[]")
+ if _elements is not None:
+ _elements.set_prop("caching", AAZStrType, ".caching")
+ _elements.set_prop("createOption", AAZStrType, ".create_option", typ_kwargs={"flags": {"required": True}})
+ _elements.set_prop("deleteOption", AAZStrType, ".delete_option")
+ _elements.set_prop("detachOption", AAZStrType, ".detach_option")
+ _elements.set_prop("diskSizeGB", AAZIntType, ".disk_size_gb")
+ _UpdateHelper._build_schema_virtual_hard_disk_update(_elements.set_prop("image", AAZObjectType, ".image"))
+ _elements.set_prop("lun", AAZIntType, ".lun", typ_kwargs={"flags": {"required": True}})
+ _UpdateHelper._build_schema_managed_disk_parameters_update(_elements.set_prop("managedDisk", AAZObjectType, ".managed_disk"))
+ _elements.set_prop("name", AAZStrType, ".name")
+ _elements.set_prop("sourceResource", AAZObjectType, ".source_resource")
+ _elements.set_prop("toBeDetached", AAZBoolType, ".to_be_detached")
+ _UpdateHelper._build_schema_virtual_hard_disk_update(_elements.set_prop("vhd", AAZObjectType, ".vhd"))
+ _elements.set_prop("writeAcceleratorEnabled", AAZBoolType, ".write_accelerator_enabled")
+
+ source_resource = _builder.get(".properties.storageProfile.dataDisks[].sourceResource")
+ if source_resource is not None:
+ source_resource.set_prop("id", AAZStrType, ".id")
+
+ image_reference = _builder.get(".properties.storageProfile.imageReference")
+ if image_reference is not None:
+ image_reference.set_prop("communityGalleryImageId", AAZStrType, ".community_gallery_image_id")
+ image_reference.set_prop("id", AAZStrType, ".id")
+ image_reference.set_prop("offer", AAZStrType, ".offer")
+ image_reference.set_prop("publisher", AAZStrType, ".publisher")
+ image_reference.set_prop("sharedGalleryImageId", AAZStrType, ".shared_gallery_image_id")
+ image_reference.set_prop("sku", AAZStrType, ".sku")
+ image_reference.set_prop("version", AAZStrType, ".version")
+
+ os_disk = _builder.get(".properties.storageProfile.osDisk")
+ if os_disk is not None:
+ os_disk.set_prop("caching", AAZStrType, ".caching")
+ os_disk.set_prop("createOption", AAZStrType, ".create_option", typ_kwargs={"flags": {"required": True}})
+ os_disk.set_prop("deleteOption", AAZStrType, ".delete_option")
+ os_disk.set_prop("diffDiskSettings", AAZObjectType, ".diff_disk_settings")
+ os_disk.set_prop("diskSizeGB", AAZIntType, ".disk_size_gb")
+ os_disk.set_prop("encryptionSettings", AAZObjectType, ".encryption_settings")
+ _UpdateHelper._build_schema_virtual_hard_disk_update(os_disk.set_prop("image", AAZObjectType, ".image"))
+ _UpdateHelper._build_schema_managed_disk_parameters_update(os_disk.set_prop("managedDisk", AAZObjectType, ".managed_disk"))
+ os_disk.set_prop("name", AAZStrType, ".name")
+ os_disk.set_prop("osType", AAZStrType, ".os_type")
+ _UpdateHelper._build_schema_virtual_hard_disk_update(os_disk.set_prop("vhd", AAZObjectType, ".vhd"))
+ os_disk.set_prop("writeAcceleratorEnabled", AAZBoolType, ".write_accelerator_enabled")
+
+ diff_disk_settings = _builder.get(".properties.storageProfile.osDisk.diffDiskSettings")
+ if diff_disk_settings is not None:
+ diff_disk_settings.set_prop("option", AAZStrType, ".option")
+ diff_disk_settings.set_prop("placement", AAZStrType, ".placement")
+
+ encryption_settings = _builder.get(".properties.storageProfile.osDisk.encryptionSettings")
+ if encryption_settings is not None:
+ encryption_settings.set_prop("diskEncryptionKey", AAZObjectType, ".disk_encryption_key")
+ encryption_settings.set_prop("enabled", AAZBoolType, ".enabled")
+ encryption_settings.set_prop("keyEncryptionKey", AAZObjectType, ".key_encryption_key")
+
+ disk_encryption_key = _builder.get(".properties.storageProfile.osDisk.encryptionSettings.diskEncryptionKey")
+ if disk_encryption_key is not None:
+ disk_encryption_key.set_prop("secretUrl", AAZStrType, ".secret_url", typ_kwargs={"flags": {"required": True}})
+ _UpdateHelper._build_schema_sub_resource_update(disk_encryption_key.set_prop("sourceVault", AAZObjectType, ".source_vault", typ_kwargs={"flags": {"required": True}}))
+
+ key_encryption_key = _builder.get(".properties.storageProfile.osDisk.encryptionSettings.keyEncryptionKey")
+ if key_encryption_key is not None:
+ key_encryption_key.set_prop("keyUrl", AAZStrType, ".key_url", typ_kwargs={"flags": {"required": True}})
+ _UpdateHelper._build_schema_sub_resource_update(key_encryption_key.set_prop("sourceVault", AAZObjectType, ".source_vault", typ_kwargs={"flags": {"required": True}}))
+
+ 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"""
+
+ @classmethod
+ def _build_schema_disk_encryption_set_parameters_update(cls, _builder):
+ if _builder is None:
+ return
+ _builder.set_prop("id", AAZStrType, ".id")
+
+ @classmethod
+ def _build_schema_managed_disk_parameters_update(cls, _builder):
+ if _builder is None:
+ return
+ cls._build_schema_disk_encryption_set_parameters_update(_builder.set_prop("diskEncryptionSet", AAZObjectType, ".disk_encryption_set"))
+ _builder.set_prop("id", AAZStrType, ".id")
+ _builder.set_prop("securityProfile", AAZObjectType, ".security_profile")
+ _builder.set_prop("storageAccountType", AAZStrType, ".storage_account_type")
+
+ security_profile = _builder.get(".securityProfile")
+ if security_profile is not None:
+ cls._build_schema_disk_encryption_set_parameters_update(security_profile.set_prop("diskEncryptionSet", AAZObjectType, ".disk_encryption_set"))
+ security_profile.set_prop("securityEncryptionType", AAZStrType, ".security_encryption_type")
+
+ @classmethod
+ def _build_schema_sub_resource_update(cls, _builder):
+ if _builder is None:
+ return
+ _builder.set_prop("id", AAZStrType, ".id")
+
+ @classmethod
+ def _build_schema_virtual_hard_disk_update(cls, _builder):
+ if _builder is None:
+ return
+ _builder.set_prop("uri", AAZStrType, ".uri")
+
+ _schema_api_error_read = None
+
+ @classmethod
+ def _build_schema_api_error_read(cls, _schema):
+ if cls._schema_api_error_read is not None:
+ _schema.code = cls._schema_api_error_read.code
+ _schema.details = cls._schema_api_error_read.details
+ _schema.innererror = cls._schema_api_error_read.innererror
+ _schema.message = cls._schema_api_error_read.message
+ _schema.target = cls._schema_api_error_read.target
+ return
+
+ cls._schema_api_error_read = _schema_api_error_read = AAZObjectType(
+ flags={"read_only": True}
+ )
+
+ api_error_read = _schema_api_error_read
+ api_error_read.code = AAZStrType()
+ api_error_read.details = AAZListType()
+ api_error_read.innererror = AAZObjectType()
+ api_error_read.message = AAZStrType()
+ api_error_read.target = AAZStrType()
+
+ details = _schema_api_error_read.details
+ details.Element = AAZObjectType()
+
+ _element = _schema_api_error_read.details.Element
+ _element.code = AAZStrType()
+ _element.message = AAZStrType()
+ _element.target = AAZStrType()
+
+ innererror = _schema_api_error_read.innererror
+ innererror.errordetail = AAZStrType()
+ innererror.exceptiontype = AAZStrType()
+
+ _schema.code = cls._schema_api_error_read.code
+ _schema.details = cls._schema_api_error_read.details
+ _schema.innererror = cls._schema_api_error_read.innererror
+ _schema.message = cls._schema_api_error_read.message
+ _schema.target = cls._schema_api_error_read.target
+
+ _schema_disk_encryption_set_parameters_read = None
+
+ @classmethod
+ def _build_schema_disk_encryption_set_parameters_read(cls, _schema):
+ if cls._schema_disk_encryption_set_parameters_read is not None:
+ _schema.id = cls._schema_disk_encryption_set_parameters_read.id
+ return
+
+ cls._schema_disk_encryption_set_parameters_read = _schema_disk_encryption_set_parameters_read = AAZObjectType()
+
+ disk_encryption_set_parameters_read = _schema_disk_encryption_set_parameters_read
+ disk_encryption_set_parameters_read.id = AAZStrType()
+
+ _schema.id = cls._schema_disk_encryption_set_parameters_read.id
+
+ _schema_disk_encryption_settings_read = None
+
+ @classmethod
+ def _build_schema_disk_encryption_settings_read(cls, _schema):
+ if cls._schema_disk_encryption_settings_read is not None:
+ _schema.disk_encryption_key = cls._schema_disk_encryption_settings_read.disk_encryption_key
+ _schema.enabled = cls._schema_disk_encryption_settings_read.enabled
+ _schema.key_encryption_key = cls._schema_disk_encryption_settings_read.key_encryption_key
+ return
+
+ cls._schema_disk_encryption_settings_read = _schema_disk_encryption_settings_read = AAZObjectType()
+
+ disk_encryption_settings_read = _schema_disk_encryption_settings_read
+ disk_encryption_settings_read.disk_encryption_key = AAZObjectType(
+ serialized_name="diskEncryptionKey",
+ )
+ cls._build_schema_key_vault_secret_reference_read(disk_encryption_settings_read.disk_encryption_key)
+ disk_encryption_settings_read.enabled = AAZBoolType()
+ disk_encryption_settings_read.key_encryption_key = AAZObjectType(
+ serialized_name="keyEncryptionKey",
+ )
+
+ key_encryption_key = _schema_disk_encryption_settings_read.key_encryption_key
+ key_encryption_key.key_url = AAZStrType(
+ serialized_name="keyUrl",
+ flags={"required": True},
+ )
+ key_encryption_key.source_vault = AAZObjectType(
+ serialized_name="sourceVault",
+ flags={"required": True},
+ )
+ cls._build_schema_sub_resource_read(key_encryption_key.source_vault)
+
+ _schema.disk_encryption_key = cls._schema_disk_encryption_settings_read.disk_encryption_key
+ _schema.enabled = cls._schema_disk_encryption_settings_read.enabled
+ _schema.key_encryption_key = cls._schema_disk_encryption_settings_read.key_encryption_key
+
+ _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_key_vault_secret_reference_read = None
+
+ @classmethod
+ def _build_schema_key_vault_secret_reference_read(cls, _schema):
+ if cls._schema_key_vault_secret_reference_read is not None:
+ _schema.secret_url = cls._schema_key_vault_secret_reference_read.secret_url
+ _schema.source_vault = cls._schema_key_vault_secret_reference_read.source_vault
+ return
+
+ cls._schema_key_vault_secret_reference_read = _schema_key_vault_secret_reference_read = AAZObjectType()
+
+ key_vault_secret_reference_read = _schema_key_vault_secret_reference_read
+ key_vault_secret_reference_read.secret_url = AAZStrType(
+ serialized_name="secretUrl",
+ flags={"required": True},
+ )
+ key_vault_secret_reference_read.source_vault = AAZObjectType(
+ serialized_name="sourceVault",
+ flags={"required": True},
+ )
+ cls._build_schema_sub_resource_read(key_vault_secret_reference_read.source_vault)
+
+ _schema.secret_url = cls._schema_key_vault_secret_reference_read.secret_url
+ _schema.source_vault = cls._schema_key_vault_secret_reference_read.source_vault
+
+ _schema_managed_disk_parameters_read = None
+
+ @classmethod
+ def _build_schema_managed_disk_parameters_read(cls, _schema):
+ if cls._schema_managed_disk_parameters_read is not None:
+ _schema.disk_encryption_set = cls._schema_managed_disk_parameters_read.disk_encryption_set
+ _schema.id = cls._schema_managed_disk_parameters_read.id
+ _schema.security_profile = cls._schema_managed_disk_parameters_read.security_profile
+ _schema.storage_account_type = cls._schema_managed_disk_parameters_read.storage_account_type
+ return
+
+ cls._schema_managed_disk_parameters_read = _schema_managed_disk_parameters_read = AAZObjectType()
+
+ managed_disk_parameters_read = _schema_managed_disk_parameters_read
+ managed_disk_parameters_read.disk_encryption_set = AAZObjectType(
+ serialized_name="diskEncryptionSet",
+ )
+ cls._build_schema_disk_encryption_set_parameters_read(managed_disk_parameters_read.disk_encryption_set)
+ managed_disk_parameters_read.id = AAZStrType()
+ managed_disk_parameters_read.security_profile = AAZObjectType(
+ serialized_name="securityProfile",
+ )
+ managed_disk_parameters_read.storage_account_type = AAZStrType(
+ serialized_name="storageAccountType",
+ )
+
+ security_profile = _schema_managed_disk_parameters_read.security_profile
+ security_profile.disk_encryption_set = AAZObjectType(
+ serialized_name="diskEncryptionSet",
+ )
+ cls._build_schema_disk_encryption_set_parameters_read(security_profile.disk_encryption_set)
+ security_profile.security_encryption_type = AAZStrType(
+ serialized_name="securityEncryptionType",
+ )
+
+ _schema.disk_encryption_set = cls._schema_managed_disk_parameters_read.disk_encryption_set
+ _schema.id = cls._schema_managed_disk_parameters_read.id
+ _schema.security_profile = cls._schema_managed_disk_parameters_read.security_profile
+ _schema.storage_account_type = cls._schema_managed_disk_parameters_read.storage_account_type
+
+ _schema_sub_resource_read = None
+
+ @classmethod
+ def _build_schema_sub_resource_read(cls, _schema):
+ if cls._schema_sub_resource_read is not None:
+ _schema.id = cls._schema_sub_resource_read.id
+ return
+
+ cls._schema_sub_resource_read = _schema_sub_resource_read = AAZObjectType()
+
+ sub_resource_read = _schema_sub_resource_read
+ sub_resource_read.id = AAZStrType()
+
+ _schema.id = cls._schema_sub_resource_read.id
+
+ _schema_virtual_hard_disk_read = None
+
+ @classmethod
+ def _build_schema_virtual_hard_disk_read(cls, _schema):
+ if cls._schema_virtual_hard_disk_read is not None:
+ _schema.uri = cls._schema_virtual_hard_disk_read.uri
+ return
+
+ cls._schema_virtual_hard_disk_read = _schema_virtual_hard_disk_read = AAZObjectType()
+
+ virtual_hard_disk_read = _schema_virtual_hard_disk_read
+ virtual_hard_disk_read.uri = AAZStrType()
+
+ _schema.uri = cls._schema_virtual_hard_disk_read.uri
+
+ _schema_virtual_machine_extension_instance_view_read = None
+
+ @classmethod
+ def _build_schema_virtual_machine_extension_instance_view_read(cls, _schema):
+ if cls._schema_virtual_machine_extension_instance_view_read is not None:
+ _schema.name = cls._schema_virtual_machine_extension_instance_view_read.name
+ _schema.statuses = cls._schema_virtual_machine_extension_instance_view_read.statuses
+ _schema.substatuses = cls._schema_virtual_machine_extension_instance_view_read.substatuses
+ _schema.type = cls._schema_virtual_machine_extension_instance_view_read.type
+ _schema.type_handler_version = cls._schema_virtual_machine_extension_instance_view_read.type_handler_version
+ return
+
+ cls._schema_virtual_machine_extension_instance_view_read = _schema_virtual_machine_extension_instance_view_read = AAZObjectType()
+
+ virtual_machine_extension_instance_view_read = _schema_virtual_machine_extension_instance_view_read
+ virtual_machine_extension_instance_view_read.name = AAZStrType()
+ virtual_machine_extension_instance_view_read.statuses = AAZListType()
+ virtual_machine_extension_instance_view_read.substatuses = AAZListType()
+ virtual_machine_extension_instance_view_read.type = AAZStrType()
+ virtual_machine_extension_instance_view_read.type_handler_version = AAZStrType(
+ serialized_name="typeHandlerVersion",
+ )
+
+ statuses = _schema_virtual_machine_extension_instance_view_read.statuses
+ statuses.Element = AAZObjectType()
+ cls._build_schema_instance_view_status_read(statuses.Element)
+
+ substatuses = _schema_virtual_machine_extension_instance_view_read.substatuses
+ substatuses.Element = AAZObjectType()
+ cls._build_schema_instance_view_status_read(substatuses.Element)
+
+ _schema.name = cls._schema_virtual_machine_extension_instance_view_read.name
+ _schema.statuses = cls._schema_virtual_machine_extension_instance_view_read.statuses
+ _schema.substatuses = cls._schema_virtual_machine_extension_instance_view_read.substatuses
+ _schema.type = cls._schema_virtual_machine_extension_instance_view_read.type
+ _schema.type_handler_version = cls._schema_virtual_machine_extension_instance_view_read.type_handler_version
+
+ _schema_virtual_machine_read = None
+
+ @classmethod
+ def _build_schema_virtual_machine_read(cls, _schema):
+ if cls._schema_virtual_machine_read is not None:
+ _schema.etag = cls._schema_virtual_machine_read.etag
+ _schema.extended_location = cls._schema_virtual_machine_read.extended_location
+ _schema.id = cls._schema_virtual_machine_read.id
+ _schema.identity = cls._schema_virtual_machine_read.identity
+ _schema.location = cls._schema_virtual_machine_read.location
+ _schema.managed_by = cls._schema_virtual_machine_read.managed_by
+ _schema.name = cls._schema_virtual_machine_read.name
+ _schema.plan = cls._schema_virtual_machine_read.plan
+ _schema.properties = cls._schema_virtual_machine_read.properties
+ _schema.resources = cls._schema_virtual_machine_read.resources
+ _schema.tags = cls._schema_virtual_machine_read.tags
+ _schema.type = cls._schema_virtual_machine_read.type
+ _schema.zones = cls._schema_virtual_machine_read.zones
+ return
+
+ cls._schema_virtual_machine_read = _schema_virtual_machine_read = AAZObjectType()
+
+ virtual_machine_read = _schema_virtual_machine_read
+ virtual_machine_read.etag = AAZStrType(
+ flags={"read_only": True},
+ )
+ virtual_machine_read.extended_location = AAZObjectType(
+ serialized_name="extendedLocation",
+ )
+ virtual_machine_read.id = AAZStrType(
+ flags={"read_only": True},
+ )
+ virtual_machine_read.identity = AAZIdentityObjectType()
+ virtual_machine_read.location = AAZStrType(
+ flags={"required": True},
+ )
+ virtual_machine_read.managed_by = AAZStrType(
+ serialized_name="managedBy",
+ flags={"read_only": True},
+ )
+ virtual_machine_read.name = AAZStrType(
+ flags={"read_only": True},
+ )
+ virtual_machine_read.plan = AAZObjectType()
+ virtual_machine_read.properties = AAZObjectType(
+ flags={"client_flatten": True},
+ )
+ virtual_machine_read.resources = AAZListType(
+ flags={"read_only": True},
+ )
+ virtual_machine_read.tags = AAZDictType()
+ virtual_machine_read.type = AAZStrType(
+ flags={"read_only": True},
+ )
+ virtual_machine_read.zones = AAZListType()
+
+ extended_location = _schema_virtual_machine_read.extended_location
+ extended_location.name = AAZStrType()
+ extended_location.type = AAZStrType()
+
+ identity = _schema_virtual_machine_read.identity
+ identity.principal_id = AAZStrType(
+ serialized_name="principalId",
+ flags={"read_only": True},
+ )
+ identity.tenant_id = AAZStrType(
+ serialized_name="tenantId",
+ flags={"read_only": True},
+ )
+ identity.type = AAZStrType()
+ identity.user_assigned_identities = AAZDictType(
+ serialized_name="userAssignedIdentities",
+ )
+
+ user_assigned_identities = _schema_virtual_machine_read.identity.user_assigned_identities
+ user_assigned_identities.Element = AAZObjectType()
+
+ _element = _schema_virtual_machine_read.identity.user_assigned_identities.Element
+ _element.client_id = AAZStrType(
+ serialized_name="clientId",
+ flags={"read_only": True},
+ )
+ _element.principal_id = AAZStrType(
+ serialized_name="principalId",
+ flags={"read_only": True},
+ )
+
+ plan = _schema_virtual_machine_read.plan
+ plan.name = AAZStrType()
+ plan.product = AAZStrType()
+ plan.promotion_code = AAZStrType(
+ serialized_name="promotionCode",
+ )
+ plan.publisher = AAZStrType()
+
+ properties = _schema_virtual_machine_read.properties
+ properties.additional_capabilities = AAZObjectType(
+ serialized_name="additionalCapabilities",
+ )
+ properties.application_profile = AAZObjectType(
+ serialized_name="applicationProfile",
+ )
+ properties.availability_set = AAZObjectType(
+ serialized_name="availabilitySet",
+ )
+ cls._build_schema_sub_resource_read(properties.availability_set)
+ properties.billing_profile = AAZObjectType(
+ serialized_name="billingProfile",
+ )
+ properties.capacity_reservation = AAZObjectType(
+ serialized_name="capacityReservation",
+ )
+ properties.diagnostics_profile = AAZObjectType(
+ serialized_name="diagnosticsProfile",
+ )
+ properties.eviction_policy = AAZStrType(
+ serialized_name="evictionPolicy",
+ )
+ properties.extensions_time_budget = AAZStrType(
+ serialized_name="extensionsTimeBudget",
+ )
+ properties.hardware_profile = AAZObjectType(
+ serialized_name="hardwareProfile",
+ )
+ properties.host = AAZObjectType()
+ cls._build_schema_sub_resource_read(properties.host)
+ properties.host_group = AAZObjectType(
+ serialized_name="hostGroup",
+ )
+ cls._build_schema_sub_resource_read(properties.host_group)
+ properties.instance_view = AAZObjectType(
+ serialized_name="instanceView",
+ flags={"read_only": True},
+ )
+ properties.license_type = AAZStrType(
+ serialized_name="licenseType",
+ )
+ properties.network_profile = AAZObjectType(
+ serialized_name="networkProfile",
+ )
+ properties.os_profile = AAZObjectType(
+ serialized_name="osProfile",
+ )
+ properties.platform_fault_domain = AAZIntType(
+ serialized_name="platformFaultDomain",
+ )
+ properties.priority = AAZStrType()
+ properties.provisioning_state = AAZStrType(
+ serialized_name="provisioningState",
+ flags={"read_only": True},
+ )
+ properties.proximity_placement_group = AAZObjectType(
+ serialized_name="proximityPlacementGroup",
+ )
+ cls._build_schema_sub_resource_read(properties.proximity_placement_group)
+ properties.scheduled_events_policy = AAZObjectType(
+ serialized_name="scheduledEventsPolicy",
+ )
+ properties.scheduled_events_profile = AAZObjectType(
+ serialized_name="scheduledEventsProfile",
+ )
+ properties.security_profile = AAZObjectType(
+ serialized_name="securityProfile",
+ )
+ properties.storage_profile = AAZObjectType(
+ serialized_name="storageProfile",
+ )
+ properties.time_created = AAZStrType(
+ serialized_name="timeCreated",
+ flags={"read_only": True},
+ )
+ properties.user_data = AAZStrType(
+ serialized_name="userData",
+ )
+ properties.virtual_machine_scale_set = AAZObjectType(
+ serialized_name="virtualMachineScaleSet",
+ )
+ cls._build_schema_sub_resource_read(properties.virtual_machine_scale_set)
+ properties.vm_id = AAZStrType(
+ serialized_name="vmId",
+ flags={"read_only": True},
+ )
+
+ additional_capabilities = _schema_virtual_machine_read.properties.additional_capabilities
+ additional_capabilities.hibernation_enabled = AAZBoolType(
+ serialized_name="hibernationEnabled",
+ )
+ additional_capabilities.ultra_ssd_enabled = AAZBoolType(
+ serialized_name="ultraSSDEnabled",
+ )
+
+ application_profile = _schema_virtual_machine_read.properties.application_profile
+ application_profile.gallery_applications = AAZListType(
+ serialized_name="galleryApplications",
+ )
+
+ gallery_applications = _schema_virtual_machine_read.properties.application_profile.gallery_applications
+ gallery_applications.Element = AAZObjectType()
+
+ _element = _schema_virtual_machine_read.properties.application_profile.gallery_applications.Element
+ _element.configuration_reference = AAZStrType(
+ serialized_name="configurationReference",
+ )
+ _element.enable_automatic_upgrade = AAZBoolType(
+ serialized_name="enableAutomaticUpgrade",
+ )
+ _element.order = AAZIntType()
+ _element.package_reference_id = AAZStrType(
+ serialized_name="packageReferenceId",
+ flags={"required": True},
+ )
+ _element.tags = AAZStrType()
+ _element.treat_failure_as_deployment_failure = AAZBoolType(
+ serialized_name="treatFailureAsDeploymentFailure",
+ )
+
+ billing_profile = _schema_virtual_machine_read.properties.billing_profile
+ billing_profile.max_price = AAZFloatType(
+ serialized_name="maxPrice",
+ )
+
+ capacity_reservation = _schema_virtual_machine_read.properties.capacity_reservation
+ capacity_reservation.capacity_reservation_group = AAZObjectType(
+ serialized_name="capacityReservationGroup",
+ )
+ cls._build_schema_sub_resource_read(capacity_reservation.capacity_reservation_group)
+
+ diagnostics_profile = _schema_virtual_machine_read.properties.diagnostics_profile
+ diagnostics_profile.boot_diagnostics = AAZObjectType(
+ serialized_name="bootDiagnostics",
+ )
+
+ boot_diagnostics = _schema_virtual_machine_read.properties.diagnostics_profile.boot_diagnostics
+ boot_diagnostics.enabled = AAZBoolType()
+ boot_diagnostics.storage_uri = AAZStrType(
+ serialized_name="storageUri",
+ )
+
+ hardware_profile = _schema_virtual_machine_read.properties.hardware_profile
+ hardware_profile.vm_size = AAZStrType(
+ serialized_name="vmSize",
+ )
+ hardware_profile.vm_size_properties = AAZObjectType(
+ serialized_name="vmSizeProperties",
+ )
+
+ vm_size_properties = _schema_virtual_machine_read.properties.hardware_profile.vm_size_properties
+ vm_size_properties.v_cp_us_available = AAZIntType(
+ serialized_name="vCPUsAvailable",
+ )
+ vm_size_properties.v_cp_us_per_core = AAZIntType(
+ serialized_name="vCPUsPerCore",
+ )
+
+ instance_view = _schema_virtual_machine_read.properties.instance_view
+ instance_view.assigned_host = AAZStrType(
+ serialized_name="assignedHost",
+ flags={"read_only": True},
+ )
+ instance_view.boot_diagnostics = AAZObjectType(
+ serialized_name="bootDiagnostics",
+ )
+ instance_view.computer_name = AAZStrType(
+ serialized_name="computerName",
+ )
+ instance_view.disks = AAZListType()
+ instance_view.extensions = AAZListType()
+ instance_view.hyper_v_generation = AAZStrType(
+ serialized_name="hyperVGeneration",
+ )
+ instance_view.is_vm_in_standby_pool = AAZBoolType(
+ serialized_name="isVMInStandbyPool",
+ flags={"read_only": True},
+ )
+ instance_view.maintenance_redeploy_status = AAZObjectType(
+ serialized_name="maintenanceRedeployStatus",
+ )
+ instance_view.os_name = AAZStrType(
+ serialized_name="osName",
+ )
+ instance_view.os_version = AAZStrType(
+ serialized_name="osVersion",
+ )
+ instance_view.patch_status = AAZObjectType(
+ serialized_name="patchStatus",
+ )
+ instance_view.platform_fault_domain = AAZIntType(
+ serialized_name="platformFaultDomain",
+ )
+ instance_view.platform_update_domain = AAZIntType(
+ serialized_name="platformUpdateDomain",
+ )
+ instance_view.rdp_thumb_print = AAZStrType(
+ serialized_name="rdpThumbPrint",
+ )
+ instance_view.statuses = AAZListType()
+ instance_view.vm_agent = AAZObjectType(
+ serialized_name="vmAgent",
+ )
+ instance_view.vm_health = AAZObjectType(
+ serialized_name="vmHealth",
+ flags={"read_only": True},
+ )
+
+ boot_diagnostics = _schema_virtual_machine_read.properties.instance_view.boot_diagnostics
+ boot_diagnostics.console_screenshot_blob_uri = AAZStrType(
+ serialized_name="consoleScreenshotBlobUri",
+ flags={"read_only": True},
+ )
+ boot_diagnostics.serial_console_log_blob_uri = AAZStrType(
+ serialized_name="serialConsoleLogBlobUri",
+ flags={"read_only": True},
+ )
+ boot_diagnostics.status = AAZObjectType(
+ flags={"read_only": True},
+ )
+ cls._build_schema_instance_view_status_read(boot_diagnostics.status)
+
+ disks = _schema_virtual_machine_read.properties.instance_view.disks
+ disks.Element = AAZObjectType()
+
+ _element = _schema_virtual_machine_read.properties.instance_view.disks.Element
+ _element.encryption_settings = AAZListType(
+ serialized_name="encryptionSettings",
+ )
+ _element.name = AAZStrType()
+ _element.statuses = AAZListType()
+
+ encryption_settings = _schema_virtual_machine_read.properties.instance_view.disks.Element.encryption_settings
+ encryption_settings.Element = AAZObjectType()
+ cls._build_schema_disk_encryption_settings_read(encryption_settings.Element)
+
+ statuses = _schema_virtual_machine_read.properties.instance_view.disks.Element.statuses
+ statuses.Element = AAZObjectType()
+ cls._build_schema_instance_view_status_read(statuses.Element)
+
+ extensions = _schema_virtual_machine_read.properties.instance_view.extensions
+ extensions.Element = AAZObjectType()
+ cls._build_schema_virtual_machine_extension_instance_view_read(extensions.Element)
+
+ maintenance_redeploy_status = _schema_virtual_machine_read.properties.instance_view.maintenance_redeploy_status
+ maintenance_redeploy_status.is_customer_initiated_maintenance_allowed = AAZBoolType(
+ serialized_name="isCustomerInitiatedMaintenanceAllowed",
+ )
+ maintenance_redeploy_status.last_operation_message = AAZStrType(
+ serialized_name="lastOperationMessage",
+ )
+ maintenance_redeploy_status.last_operation_result_code = AAZStrType(
+ serialized_name="lastOperationResultCode",
+ )
+ maintenance_redeploy_status.maintenance_window_end_time = AAZStrType(
+ serialized_name="maintenanceWindowEndTime",
+ )
+ maintenance_redeploy_status.maintenance_window_start_time = AAZStrType(
+ serialized_name="maintenanceWindowStartTime",
+ )
+ maintenance_redeploy_status.pre_maintenance_window_end_time = AAZStrType(
+ serialized_name="preMaintenanceWindowEndTime",
+ )
+ maintenance_redeploy_status.pre_maintenance_window_start_time = AAZStrType(
+ serialized_name="preMaintenanceWindowStartTime",
+ )
+
+ patch_status = _schema_virtual_machine_read.properties.instance_view.patch_status
+ patch_status.available_patch_summary = AAZObjectType(
+ serialized_name="availablePatchSummary",
+ )
+ patch_status.configuration_statuses = AAZListType(
+ serialized_name="configurationStatuses",
+ flags={"read_only": True},
+ )
+ patch_status.last_patch_installation_summary = AAZObjectType(
+ serialized_name="lastPatchInstallationSummary",
+ )
+
+ available_patch_summary = _schema_virtual_machine_read.properties.instance_view.patch_status.available_patch_summary
+ available_patch_summary.assessment_activity_id = AAZStrType(
+ serialized_name="assessmentActivityId",
+ flags={"read_only": True},
+ )
+ available_patch_summary.critical_and_security_patch_count = AAZIntType(
+ serialized_name="criticalAndSecurityPatchCount",
+ flags={"read_only": True},
+ )
+ available_patch_summary.error = AAZObjectType(
+ flags={"read_only": True},
+ )
+ cls._build_schema_api_error_read(available_patch_summary.error)
+ available_patch_summary.last_modified_time = AAZStrType(
+ serialized_name="lastModifiedTime",
+ flags={"read_only": True},
+ )
+ available_patch_summary.other_patch_count = AAZIntType(
+ serialized_name="otherPatchCount",
+ flags={"read_only": True},
+ )
+ available_patch_summary.reboot_pending = AAZBoolType(
+ serialized_name="rebootPending",
+ flags={"read_only": True},
+ )
+ available_patch_summary.start_time = AAZStrType(
+ serialized_name="startTime",
+ flags={"read_only": True},
+ )
+ available_patch_summary.status = AAZStrType(
+ flags={"read_only": True},
+ )
+
+ configuration_statuses = _schema_virtual_machine_read.properties.instance_view.patch_status.configuration_statuses
+ configuration_statuses.Element = AAZObjectType()
+ cls._build_schema_instance_view_status_read(configuration_statuses.Element)
+
+ last_patch_installation_summary = _schema_virtual_machine_read.properties.instance_view.patch_status.last_patch_installation_summary
+ last_patch_installation_summary.error = AAZObjectType(
+ flags={"read_only": True},
+ )
+ cls._build_schema_api_error_read(last_patch_installation_summary.error)
+ last_patch_installation_summary.excluded_patch_count = AAZIntType(
+ serialized_name="excludedPatchCount",
+ flags={"read_only": True},
+ )
+ last_patch_installation_summary.failed_patch_count = AAZIntType(
+ serialized_name="failedPatchCount",
+ flags={"read_only": True},
+ )
+ last_patch_installation_summary.installation_activity_id = AAZStrType(
+ serialized_name="installationActivityId",
+ flags={"read_only": True},
+ )
+ last_patch_installation_summary.installed_patch_count = AAZIntType(
+ serialized_name="installedPatchCount",
+ flags={"read_only": True},
+ )
+ last_patch_installation_summary.last_modified_time = AAZStrType(
+ serialized_name="lastModifiedTime",
+ flags={"read_only": True},
+ )
+ last_patch_installation_summary.maintenance_window_exceeded = AAZBoolType(
+ serialized_name="maintenanceWindowExceeded",
+ flags={"read_only": True},
+ )
+ last_patch_installation_summary.not_selected_patch_count = AAZIntType(
+ serialized_name="notSelectedPatchCount",
+ flags={"read_only": True},
+ )
+ last_patch_installation_summary.pending_patch_count = AAZIntType(
+ serialized_name="pendingPatchCount",
+ flags={"read_only": True},
+ )
+ last_patch_installation_summary.start_time = AAZStrType(
+ serialized_name="startTime",
+ flags={"read_only": True},
+ )
+ last_patch_installation_summary.status = AAZStrType(
+ flags={"read_only": True},
+ )
+
+ statuses = _schema_virtual_machine_read.properties.instance_view.statuses
+ statuses.Element = AAZObjectType()
+ cls._build_schema_instance_view_status_read(statuses.Element)
+
+ vm_agent = _schema_virtual_machine_read.properties.instance_view.vm_agent
+ vm_agent.extension_handlers = AAZListType(
+ serialized_name="extensionHandlers",
+ )
+ vm_agent.statuses = AAZListType()
+ vm_agent.vm_agent_version = AAZStrType(
+ serialized_name="vmAgentVersion",
+ )
+
+ extension_handlers = _schema_virtual_machine_read.properties.instance_view.vm_agent.extension_handlers
+ extension_handlers.Element = AAZObjectType()
+
+ _element = _schema_virtual_machine_read.properties.instance_view.vm_agent.extension_handlers.Element
+ _element.status = AAZObjectType()
+ cls._build_schema_instance_view_status_read(_element.status)
+ _element.type = AAZStrType()
+ _element.type_handler_version = AAZStrType(
+ serialized_name="typeHandlerVersion",
+ )
+
+ statuses = _schema_virtual_machine_read.properties.instance_view.vm_agent.statuses
+ statuses.Element = AAZObjectType()
+ cls._build_schema_instance_view_status_read(statuses.Element)
+
+ vm_health = _schema_virtual_machine_read.properties.instance_view.vm_health
+ vm_health.status = AAZObjectType(
+ flags={"read_only": True},
+ )
+ cls._build_schema_instance_view_status_read(vm_health.status)
+
+ network_profile = _schema_virtual_machine_read.properties.network_profile
+ network_profile.network_api_version = AAZStrType(
+ serialized_name="networkApiVersion",
+ )
+ network_profile.network_interface_configurations = AAZListType(
+ serialized_name="networkInterfaceConfigurations",
+ )
+ network_profile.network_interfaces = AAZListType(
+ serialized_name="networkInterfaces",
+ )
+
+ network_interface_configurations = _schema_virtual_machine_read.properties.network_profile.network_interface_configurations
+ network_interface_configurations.Element = AAZObjectType()
+
+ _element = _schema_virtual_machine_read.properties.network_profile.network_interface_configurations.Element
+ _element.name = AAZStrType(
+ flags={"required": True},
+ )
+ _element.properties = AAZObjectType(
+ flags={"client_flatten": True},
+ )
+
+ properties = _schema_virtual_machine_read.properties.network_profile.network_interface_configurations.Element.properties
+ properties.auxiliary_mode = AAZStrType(
+ serialized_name="auxiliaryMode",
+ )
+ properties.auxiliary_sku = AAZStrType(
+ serialized_name="auxiliarySku",
+ )
+ properties.delete_option = AAZStrType(
+ serialized_name="deleteOption",
+ )
+ properties.disable_tcp_state_tracking = AAZBoolType(
+ serialized_name="disableTcpStateTracking",
+ )
+ properties.dns_settings = AAZObjectType(
+ serialized_name="dnsSettings",
+ )
+ properties.dscp_configuration = AAZObjectType(
+ serialized_name="dscpConfiguration",
+ )
+ cls._build_schema_sub_resource_read(properties.dscp_configuration)
+ properties.enable_accelerated_networking = AAZBoolType(
+ serialized_name="enableAcceleratedNetworking",
+ )
+ properties.enable_fpga = AAZBoolType(
+ serialized_name="enableFpga",
+ )
+ properties.enable_ip_forwarding = AAZBoolType(
+ serialized_name="enableIPForwarding",
+ )
+ properties.ip_configurations = AAZListType(
+ serialized_name="ipConfigurations",
+ flags={"required": True},
+ )
+ properties.network_security_group = AAZObjectType(
+ serialized_name="networkSecurityGroup",
+ )
+ cls._build_schema_sub_resource_read(properties.network_security_group)
+ properties.primary = AAZBoolType()
+
+ dns_settings = _schema_virtual_machine_read.properties.network_profile.network_interface_configurations.Element.properties.dns_settings
+ dns_settings.dns_servers = AAZListType(
+ serialized_name="dnsServers",
+ )
+
+ dns_servers = _schema_virtual_machine_read.properties.network_profile.network_interface_configurations.Element.properties.dns_settings.dns_servers
+ dns_servers.Element = AAZStrType()
+
+ ip_configurations = _schema_virtual_machine_read.properties.network_profile.network_interface_configurations.Element.properties.ip_configurations
+ ip_configurations.Element = AAZObjectType()
+
+ _element = _schema_virtual_machine_read.properties.network_profile.network_interface_configurations.Element.properties.ip_configurations.Element
+ _element.name = AAZStrType(
+ flags={"required": True},
+ )
+ _element.properties = AAZObjectType(
+ flags={"client_flatten": True},
+ )
+
+ properties = _schema_virtual_machine_read.properties.network_profile.network_interface_configurations.Element.properties.ip_configurations.Element.properties
+ properties.application_gateway_backend_address_pools = AAZListType(
+ serialized_name="applicationGatewayBackendAddressPools",
+ )
+ properties.application_security_groups = AAZListType(
+ serialized_name="applicationSecurityGroups",
+ )
+ properties.load_balancer_backend_address_pools = AAZListType(
+ serialized_name="loadBalancerBackendAddressPools",
+ )
+ properties.primary = AAZBoolType()
+ properties.private_ip_address_version = AAZStrType(
+ serialized_name="privateIPAddressVersion",
+ )
+ properties.public_ip_address_configuration = AAZObjectType(
+ serialized_name="publicIPAddressConfiguration",
+ )
+ properties.subnet = AAZObjectType()
+ cls._build_schema_sub_resource_read(properties.subnet)
+
+ application_gateway_backend_address_pools = _schema_virtual_machine_read.properties.network_profile.network_interface_configurations.Element.properties.ip_configurations.Element.properties.application_gateway_backend_address_pools
+ application_gateway_backend_address_pools.Element = AAZObjectType()
+ cls._build_schema_sub_resource_read(application_gateway_backend_address_pools.Element)
+
+ application_security_groups = _schema_virtual_machine_read.properties.network_profile.network_interface_configurations.Element.properties.ip_configurations.Element.properties.application_security_groups
+ application_security_groups.Element = AAZObjectType()
+ cls._build_schema_sub_resource_read(application_security_groups.Element)
+
+ load_balancer_backend_address_pools = _schema_virtual_machine_read.properties.network_profile.network_interface_configurations.Element.properties.ip_configurations.Element.properties.load_balancer_backend_address_pools
+ load_balancer_backend_address_pools.Element = AAZObjectType()
+ cls._build_schema_sub_resource_read(load_balancer_backend_address_pools.Element)
+
+ public_ip_address_configuration = _schema_virtual_machine_read.properties.network_profile.network_interface_configurations.Element.properties.ip_configurations.Element.properties.public_ip_address_configuration
+ public_ip_address_configuration.name = AAZStrType(
+ flags={"required": True},
+ )
+ public_ip_address_configuration.properties = AAZObjectType(
+ flags={"client_flatten": True},
+ )
+ public_ip_address_configuration.sku = AAZObjectType()
+
+ properties = _schema_virtual_machine_read.properties.network_profile.network_interface_configurations.Element.properties.ip_configurations.Element.properties.public_ip_address_configuration.properties
+ properties.delete_option = AAZStrType(
+ serialized_name="deleteOption",
+ )
+ properties.dns_settings = AAZObjectType(
+ serialized_name="dnsSettings",
+ )
+ properties.idle_timeout_in_minutes = AAZIntType(
+ serialized_name="idleTimeoutInMinutes",
+ )
+ properties.ip_tags = AAZListType(
+ serialized_name="ipTags",
+ )
+ properties.public_ip_address_version = AAZStrType(
+ serialized_name="publicIPAddressVersion",
+ )
+ properties.public_ip_allocation_method = AAZStrType(
+ serialized_name="publicIPAllocationMethod",
+ )
+ properties.public_ip_prefix = AAZObjectType(
+ serialized_name="publicIPPrefix",
+ )
+ cls._build_schema_sub_resource_read(properties.public_ip_prefix)
+
+ dns_settings = _schema_virtual_machine_read.properties.network_profile.network_interface_configurations.Element.properties.ip_configurations.Element.properties.public_ip_address_configuration.properties.dns_settings
+ dns_settings.domain_name_label = AAZStrType(
+ serialized_name="domainNameLabel",
+ flags={"required": True},
+ )
+ dns_settings.domain_name_label_scope = AAZStrType(
+ serialized_name="domainNameLabelScope",
+ )
+
+ ip_tags = _schema_virtual_machine_read.properties.network_profile.network_interface_configurations.Element.properties.ip_configurations.Element.properties.public_ip_address_configuration.properties.ip_tags
+ ip_tags.Element = AAZObjectType()
+
+ _element = _schema_virtual_machine_read.properties.network_profile.network_interface_configurations.Element.properties.ip_configurations.Element.properties.public_ip_address_configuration.properties.ip_tags.Element
+ _element.ip_tag_type = AAZStrType(
+ serialized_name="ipTagType",
+ )
+ _element.tag = AAZStrType()
+
+ sku = _schema_virtual_machine_read.properties.network_profile.network_interface_configurations.Element.properties.ip_configurations.Element.properties.public_ip_address_configuration.sku
+ sku.name = AAZStrType()
+ sku.tier = AAZStrType()
+
+ network_interfaces = _schema_virtual_machine_read.properties.network_profile.network_interfaces
+ network_interfaces.Element = AAZObjectType()
+
+ _element = _schema_virtual_machine_read.properties.network_profile.network_interfaces.Element
+ _element.id = AAZStrType()
+ _element.properties = AAZObjectType(
+ flags={"client_flatten": True},
+ )
+
+ properties = _schema_virtual_machine_read.properties.network_profile.network_interfaces.Element.properties
+ properties.delete_option = AAZStrType(
+ serialized_name="deleteOption",
+ )
+ properties.primary = AAZBoolType()
+
+ os_profile = _schema_virtual_machine_read.properties.os_profile
+ os_profile.admin_password = AAZStrType(
+ serialized_name="adminPassword",
+ flags={"secret": True},
+ )
+ os_profile.admin_username = AAZStrType(
+ serialized_name="adminUsername",
+ )
+ os_profile.allow_extension_operations = AAZBoolType(
+ serialized_name="allowExtensionOperations",
+ )
+ os_profile.computer_name = AAZStrType(
+ serialized_name="computerName",
+ )
+ os_profile.custom_data = AAZStrType(
+ serialized_name="customData",
+ )
+ os_profile.linux_configuration = AAZObjectType(
+ serialized_name="linuxConfiguration",
+ )
+ os_profile.require_guest_provision_signal = AAZBoolType(
+ serialized_name="requireGuestProvisionSignal",
+ )
+ os_profile.secrets = AAZListType()
+ os_profile.windows_configuration = AAZObjectType(
+ serialized_name="windowsConfiguration",
+ )
+
+ linux_configuration = _schema_virtual_machine_read.properties.os_profile.linux_configuration
+ linux_configuration.disable_password_authentication = AAZBoolType(
+ serialized_name="disablePasswordAuthentication",
+ )
+ linux_configuration.enable_vm_agent_platform_updates = AAZBoolType(
+ serialized_name="enableVMAgentPlatformUpdates",
+ )
+ linux_configuration.patch_settings = AAZObjectType(
+ serialized_name="patchSettings",
+ )
+ linux_configuration.provision_vm_agent = AAZBoolType(
+ serialized_name="provisionVMAgent",
+ )
+ linux_configuration.ssh = AAZObjectType()
+
+ patch_settings = _schema_virtual_machine_read.properties.os_profile.linux_configuration.patch_settings
+ patch_settings.assessment_mode = AAZStrType(
+ serialized_name="assessmentMode",
+ )
+ patch_settings.automatic_by_platform_settings = AAZObjectType(
+ serialized_name="automaticByPlatformSettings",
+ )
+ patch_settings.patch_mode = AAZStrType(
+ serialized_name="patchMode",
+ )
+
+ automatic_by_platform_settings = _schema_virtual_machine_read.properties.os_profile.linux_configuration.patch_settings.automatic_by_platform_settings
+ automatic_by_platform_settings.bypass_platform_safety_checks_on_user_schedule = AAZBoolType(
+ serialized_name="bypassPlatformSafetyChecksOnUserSchedule",
+ )
+ automatic_by_platform_settings.reboot_setting = AAZStrType(
+ serialized_name="rebootSetting",
+ )
+
+ ssh = _schema_virtual_machine_read.properties.os_profile.linux_configuration.ssh
+ ssh.public_keys = AAZListType(
+ serialized_name="publicKeys",
+ )
+
+ public_keys = _schema_virtual_machine_read.properties.os_profile.linux_configuration.ssh.public_keys
+ public_keys.Element = AAZObjectType()
+
+ _element = _schema_virtual_machine_read.properties.os_profile.linux_configuration.ssh.public_keys.Element
+ _element.key_data = AAZStrType(
+ serialized_name="keyData",
+ )
+ _element.path = AAZStrType()
+
+ secrets = _schema_virtual_machine_read.properties.os_profile.secrets
+ secrets.Element = AAZObjectType()
+
+ _element = _schema_virtual_machine_read.properties.os_profile.secrets.Element
+ _element.source_vault = AAZObjectType(
+ serialized_name="sourceVault",
+ )
+ cls._build_schema_sub_resource_read(_element.source_vault)
+ _element.vault_certificates = AAZListType(
+ serialized_name="vaultCertificates",
+ )
+
+ vault_certificates = _schema_virtual_machine_read.properties.os_profile.secrets.Element.vault_certificates
+ vault_certificates.Element = AAZObjectType()
+
+ _element = _schema_virtual_machine_read.properties.os_profile.secrets.Element.vault_certificates.Element
+ _element.certificate_store = AAZStrType(
+ serialized_name="certificateStore",
+ )
+ _element.certificate_url = AAZStrType(
+ serialized_name="certificateUrl",
+ )
+
+ windows_configuration = _schema_virtual_machine_read.properties.os_profile.windows_configuration
+ windows_configuration.additional_unattend_content = AAZListType(
+ serialized_name="additionalUnattendContent",
+ )
+ windows_configuration.enable_automatic_updates = AAZBoolType(
+ serialized_name="enableAutomaticUpdates",
+ )
+ windows_configuration.enable_vm_agent_platform_updates = AAZBoolType(
+ serialized_name="enableVMAgentPlatformUpdates",
+ flags={"read_only": True},
+ )
+ windows_configuration.patch_settings = AAZObjectType(
+ serialized_name="patchSettings",
+ )
+ windows_configuration.provision_vm_agent = AAZBoolType(
+ serialized_name="provisionVMAgent",
+ )
+ windows_configuration.time_zone = AAZStrType(
+ serialized_name="timeZone",
+ )
+ windows_configuration.win_rm = AAZObjectType(
+ serialized_name="winRM",
+ )
+
+ additional_unattend_content = _schema_virtual_machine_read.properties.os_profile.windows_configuration.additional_unattend_content
+ additional_unattend_content.Element = AAZObjectType()
+
+ _element = _schema_virtual_machine_read.properties.os_profile.windows_configuration.additional_unattend_content.Element
+ _element.component_name = AAZStrType(
+ serialized_name="componentName",
+ )
+ _element.content = AAZStrType()
+ _element.pass_name = AAZStrType(
+ serialized_name="passName",
+ )
+ _element.setting_name = AAZStrType(
+ serialized_name="settingName",
+ )
+
+ patch_settings = _schema_virtual_machine_read.properties.os_profile.windows_configuration.patch_settings
+ patch_settings.assessment_mode = AAZStrType(
+ serialized_name="assessmentMode",
+ )
+ patch_settings.automatic_by_platform_settings = AAZObjectType(
+ serialized_name="automaticByPlatformSettings",
+ )
+ patch_settings.enable_hotpatching = AAZBoolType(
+ serialized_name="enableHotpatching",
+ )
+ patch_settings.patch_mode = AAZStrType(
+ serialized_name="patchMode",
+ )
+
+ automatic_by_platform_settings = _schema_virtual_machine_read.properties.os_profile.windows_configuration.patch_settings.automatic_by_platform_settings
+ automatic_by_platform_settings.bypass_platform_safety_checks_on_user_schedule = AAZBoolType(
+ serialized_name="bypassPlatformSafetyChecksOnUserSchedule",
+ )
+ automatic_by_platform_settings.reboot_setting = AAZStrType(
+ serialized_name="rebootSetting",
+ )
+
+ win_rm = _schema_virtual_machine_read.properties.os_profile.windows_configuration.win_rm
+ win_rm.listeners = AAZListType()
+
+ listeners = _schema_virtual_machine_read.properties.os_profile.windows_configuration.win_rm.listeners
+ listeners.Element = AAZObjectType()
+
+ _element = _schema_virtual_machine_read.properties.os_profile.windows_configuration.win_rm.listeners.Element
+ _element.certificate_url = AAZStrType(
+ serialized_name="certificateUrl",
+ )
+ _element.protocol = AAZStrType()
+
+ scheduled_events_policy = _schema_virtual_machine_read.properties.scheduled_events_policy
+ scheduled_events_policy.scheduled_events_additional_publishing_targets = AAZObjectType(
+ serialized_name="scheduledEventsAdditionalPublishingTargets",
+ )
+ scheduled_events_policy.user_initiated_reboot = AAZObjectType(
+ serialized_name="userInitiatedReboot",
+ )
+ scheduled_events_policy.user_initiated_redeploy = AAZObjectType(
+ serialized_name="userInitiatedRedeploy",
+ )
+
+ scheduled_events_additional_publishing_targets = _schema_virtual_machine_read.properties.scheduled_events_policy.scheduled_events_additional_publishing_targets
+ scheduled_events_additional_publishing_targets.event_grid_and_resource_graph = AAZObjectType(
+ serialized_name="eventGridAndResourceGraph",
+ )
+
+ event_grid_and_resource_graph = _schema_virtual_machine_read.properties.scheduled_events_policy.scheduled_events_additional_publishing_targets.event_grid_and_resource_graph
+ event_grid_and_resource_graph.enable = AAZBoolType()
+
+ user_initiated_reboot = _schema_virtual_machine_read.properties.scheduled_events_policy.user_initiated_reboot
+ user_initiated_reboot.automatically_approve = AAZBoolType(
+ serialized_name="automaticallyApprove",
+ )
+
+ user_initiated_redeploy = _schema_virtual_machine_read.properties.scheduled_events_policy.user_initiated_redeploy
+ user_initiated_redeploy.automatically_approve = AAZBoolType(
+ serialized_name="automaticallyApprove",
+ )
+
+ scheduled_events_profile = _schema_virtual_machine_read.properties.scheduled_events_profile
+ scheduled_events_profile.os_image_notification_profile = AAZObjectType(
+ serialized_name="osImageNotificationProfile",
+ )
+ scheduled_events_profile.terminate_notification_profile = AAZObjectType(
+ serialized_name="terminateNotificationProfile",
+ )
+
+ os_image_notification_profile = _schema_virtual_machine_read.properties.scheduled_events_profile.os_image_notification_profile
+ os_image_notification_profile.enable = AAZBoolType()
+ os_image_notification_profile.not_before_timeout = AAZStrType(
+ serialized_name="notBeforeTimeout",
+ )
+
+ terminate_notification_profile = _schema_virtual_machine_read.properties.scheduled_events_profile.terminate_notification_profile
+ terminate_notification_profile.enable = AAZBoolType()
+ terminate_notification_profile.not_before_timeout = AAZStrType(
+ serialized_name="notBeforeTimeout",
+ )
+
+ security_profile = _schema_virtual_machine_read.properties.security_profile
+ security_profile.encryption_at_host = AAZBoolType(
+ serialized_name="encryptionAtHost",
+ )
+ security_profile.encryption_identity = AAZObjectType(
+ serialized_name="encryptionIdentity",
+ )
+ security_profile.proxy_agent_settings = AAZObjectType(
+ serialized_name="proxyAgentSettings",
+ )
+ security_profile.security_type = AAZStrType(
+ serialized_name="securityType",
+ )
+ security_profile.uefi_settings = AAZObjectType(
+ serialized_name="uefiSettings",
+ )
+
+ encryption_identity = _schema_virtual_machine_read.properties.security_profile.encryption_identity
+ encryption_identity.user_assigned_identity_resource_id = AAZStrType(
+ serialized_name="userAssignedIdentityResourceId",
+ )
+
+ proxy_agent_settings = _schema_virtual_machine_read.properties.security_profile.proxy_agent_settings
+ proxy_agent_settings.enabled = AAZBoolType()
+ proxy_agent_settings.key_incarnation_id = AAZIntType(
+ serialized_name="keyIncarnationId",
+ )
+ proxy_agent_settings.mode = AAZStrType()
+
+ uefi_settings = _schema_virtual_machine_read.properties.security_profile.uefi_settings
+ uefi_settings.secure_boot_enabled = AAZBoolType(
+ serialized_name="secureBootEnabled",
+ )
+ uefi_settings.v_tpm_enabled = AAZBoolType(
+ serialized_name="vTpmEnabled",
+ )
+
+ storage_profile = _schema_virtual_machine_read.properties.storage_profile
+ storage_profile.data_disks = AAZListType(
+ serialized_name="dataDisks",
+ )
+ storage_profile.disk_controller_type = AAZStrType(
+ serialized_name="diskControllerType",
+ )
+ storage_profile.image_reference = AAZObjectType(
+ serialized_name="imageReference",
+ )
+ storage_profile.os_disk = AAZObjectType(
+ serialized_name="osDisk",
+ )
+
+ data_disks = _schema_virtual_machine_read.properties.storage_profile.data_disks
+ data_disks.Element = AAZObjectType()
+
+ _element = _schema_virtual_machine_read.properties.storage_profile.data_disks.Element
+ _element.caching = AAZStrType()
+ _element.create_option = AAZStrType(
+ serialized_name="createOption",
+ flags={"required": True},
+ )
+ _element.delete_option = AAZStrType(
+ serialized_name="deleteOption",
+ )
+ _element.detach_option = AAZStrType(
+ serialized_name="detachOption",
+ )
+ _element.disk_iops_read_write = AAZIntType(
+ serialized_name="diskIOPSReadWrite",
+ flags={"read_only": True},
+ )
+ _element.disk_m_bps_read_write = AAZIntType(
+ serialized_name="diskMBpsReadWrite",
+ flags={"read_only": True},
+ )
+ _element.disk_size_gb = AAZIntType(
+ serialized_name="diskSizeGB",
+ )
+ _element.image = AAZObjectType()
+ cls._build_schema_virtual_hard_disk_read(_element.image)
+ _element.lun = AAZIntType(
+ flags={"required": True},
+ )
+ _element.managed_disk = AAZObjectType(
+ serialized_name="managedDisk",
+ )
+ cls._build_schema_managed_disk_parameters_read(_element.managed_disk)
+ _element.name = AAZStrType()
+ _element.source_resource = AAZObjectType(
+ serialized_name="sourceResource",
+ )
+ _element.to_be_detached = AAZBoolType(
+ serialized_name="toBeDetached",
+ )
+ _element.vhd = AAZObjectType()
+ cls._build_schema_virtual_hard_disk_read(_element.vhd)
+ _element.write_accelerator_enabled = AAZBoolType(
+ serialized_name="writeAcceleratorEnabled",
+ )
+
+ source_resource = _schema_virtual_machine_read.properties.storage_profile.data_disks.Element.source_resource
+ source_resource.id = AAZStrType()
+
+ image_reference = _schema_virtual_machine_read.properties.storage_profile.image_reference
+ image_reference.community_gallery_image_id = AAZStrType(
+ serialized_name="communityGalleryImageId",
+ )
+ image_reference.exact_version = AAZStrType(
+ serialized_name="exactVersion",
+ flags={"read_only": True},
+ )
+ image_reference.id = AAZStrType()
+ image_reference.offer = AAZStrType()
+ image_reference.publisher = AAZStrType()
+ image_reference.shared_gallery_image_id = AAZStrType(
+ serialized_name="sharedGalleryImageId",
+ )
+ image_reference.sku = AAZStrType()
+ image_reference.version = AAZStrType()
+
+ os_disk = _schema_virtual_machine_read.properties.storage_profile.os_disk
+ os_disk.caching = AAZStrType()
+ os_disk.create_option = AAZStrType(
+ serialized_name="createOption",
+ flags={"required": True},
+ )
+ os_disk.delete_option = AAZStrType(
+ serialized_name="deleteOption",
+ )
+ os_disk.diff_disk_settings = AAZObjectType(
+ serialized_name="diffDiskSettings",
+ )
+ os_disk.disk_size_gb = AAZIntType(
+ serialized_name="diskSizeGB",
+ )
+ os_disk.encryption_settings = AAZObjectType(
+ serialized_name="encryptionSettings",
+ )
+ cls._build_schema_disk_encryption_settings_read(os_disk.encryption_settings)
+ os_disk.image = AAZObjectType()
+ cls._build_schema_virtual_hard_disk_read(os_disk.image)
+ os_disk.managed_disk = AAZObjectType(
+ serialized_name="managedDisk",
+ )
+ cls._build_schema_managed_disk_parameters_read(os_disk.managed_disk)
+ os_disk.name = AAZStrType()
+ os_disk.os_type = AAZStrType(
+ serialized_name="osType",
+ )
+ os_disk.vhd = AAZObjectType()
+ cls._build_schema_virtual_hard_disk_read(os_disk.vhd)
+ os_disk.write_accelerator_enabled = AAZBoolType(
+ serialized_name="writeAcceleratorEnabled",
+ )
+
+ diff_disk_settings = _schema_virtual_machine_read.properties.storage_profile.os_disk.diff_disk_settings
+ diff_disk_settings.option = AAZStrType()
+ diff_disk_settings.placement = AAZStrType()
+
+ resources = _schema_virtual_machine_read.resources
+ resources.Element = AAZObjectType()
+
+ _element = _schema_virtual_machine_read.resources.Element
+ _element.id = AAZStrType(
+ flags={"read_only": True},
+ )
+ _element.location = AAZStrType()
+ _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 = _schema_virtual_machine_read.resources.Element.properties
+ properties.auto_upgrade_minor_version = AAZBoolType(
+ serialized_name="autoUpgradeMinorVersion",
+ )
+ properties.enable_automatic_upgrade = AAZBoolType(
+ serialized_name="enableAutomaticUpgrade",
+ )
+ properties.force_update_tag = AAZStrType(
+ serialized_name="forceUpdateTag",
+ )
+ properties.instance_view = AAZObjectType(
+ serialized_name="instanceView",
+ )
+ cls._build_schema_virtual_machine_extension_instance_view_read(properties.instance_view)
+ properties.protected_settings = AAZFreeFormDictType(
+ serialized_name="protectedSettings",
+ )
+ properties.protected_settings_from_key_vault = AAZObjectType(
+ serialized_name="protectedSettingsFromKeyVault",
+ )
+ cls._build_schema_key_vault_secret_reference_read(properties.protected_settings_from_key_vault)
+ properties.provision_after_extensions = AAZListType(
+ serialized_name="provisionAfterExtensions",
+ )
+ properties.provisioning_state = AAZStrType(
+ serialized_name="provisioningState",
+ flags={"read_only": True},
+ )
+ properties.publisher = AAZStrType()
+ properties.settings = AAZFreeFormDictType()
+ properties.suppress_failures = AAZBoolType(
+ serialized_name="suppressFailures",
+ )
+ properties.type = AAZStrType()
+ properties.type_handler_version = AAZStrType(
+ serialized_name="typeHandlerVersion",
+ )
+
+ provision_after_extensions = _schema_virtual_machine_read.resources.Element.properties.provision_after_extensions
+ provision_after_extensions.Element = AAZStrType()
+
+ tags = _schema_virtual_machine_read.resources.Element.tags
+ tags.Element = AAZStrType()
+
+ tags = _schema_virtual_machine_read.tags
+ tags.Element = AAZStrType()
+
+ zones = _schema_virtual_machine_read.zones
+ zones.Element = AAZStrType()
+
+ _schema.etag = cls._schema_virtual_machine_read.etag
+ _schema.extended_location = cls._schema_virtual_machine_read.extended_location
+ _schema.id = cls._schema_virtual_machine_read.id
+ _schema.identity = cls._schema_virtual_machine_read.identity
+ _schema.location = cls._schema_virtual_machine_read.location
+ _schema.managed_by = cls._schema_virtual_machine_read.managed_by
+ _schema.name = cls._schema_virtual_machine_read.name
+ _schema.plan = cls._schema_virtual_machine_read.plan
+ _schema.properties = cls._schema_virtual_machine_read.properties
+ _schema.resources = cls._schema_virtual_machine_read.resources
+ _schema.tags = cls._schema_virtual_machine_read.tags
+ _schema.type = cls._schema_virtual_machine_read.type
+ _schema.zones = cls._schema_virtual_machine_read.zones
+
+
+__all__ = ["Update"]
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 0cf1c1258bc..173fbfd19d4 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
@@ -258,9 +258,6 @@ def load_command_table(self, _):
g.custom_command('identity remove', 'remove_vm_identity', validator=process_remove_identity_namespace, min_api='2017-12-01')
g.custom_show_command('identity show', 'show_vm_identity')
- g.custom_command('application set', 'set_vm_applications', validator=process_set_applications_namespace, min_api='2021-07-01')
- g.custom_command('application list', 'list_vm_applications', min_api='2021-07-01')
-
g.custom_command('capture', 'capture_vm')
g.custom_command('create', 'create_vm', transform=transform_vm_create_output, supports_no_wait=True, table_transformer=deployment_validate_table_format, validator=process_vm_create_namespace, exception_handler=handle_template_based_exception)
g.command('delete', 'begin_delete', confirmation=True, supports_no_wait=True)
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 923f5fb0438..76ee4c644c4 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/custom.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py
@@ -5511,44 +5511,65 @@ def show_capacity_reservation(client, resource_group_name, capacity_reservation_
def set_vm_applications(cmd, vm_name, resource_group_name, application_version_ids, order_applications=False, application_configuration_overrides=None, treat_deployment_as_failure=None, no_wait=False):
- client = _compute_client_factory(cmd.cli_ctx)
- ApplicationProfile, VMGalleryApplication = cmd.get_models('ApplicationProfile', 'VMGalleryApplication')
- try:
- vm = client.virtual_machines.get(resource_group_name, vm_name)
- except ResourceNotFoundError:
- raise ResourceNotFoundError('Could not find vm {}.'.format(vm_name))
-
- vm.application_profile = ApplicationProfile(gallery_applications=[VMGalleryApplication(package_reference_id=avid) for avid in application_version_ids])
-
- if order_applications:
- index = 1
- for app in vm.application_profile.gallery_applications:
- app.order = index
- index += 1
-
- if application_configuration_overrides:
- index = 0
- for over_ride in application_configuration_overrides:
- if over_ride or over_ride.lower() != 'null':
- vm.application_profile.gallery_applications[index].configuration_reference = over_ride
- index += 1
-
- if treat_deployment_as_failure:
- index = 0
- for treat_as_failure in treat_deployment_as_failure:
- vm.application_profile.gallery_applications[index].treat_failure_as_deployment_failure = \
- treat_as_failure.lower() == 'true'
- index += 1
- return sdk_no_wait(no_wait, client.virtual_machines.begin_create_or_update, resource_group_name, vm_name, vm)
+ from .aaz.latest.vm import Update as _VMUpdate
+
+ class SetVMApplications(_VMUpdate):
+ def pre_operations(self):
+ args = self.ctx.args
+ args.no_wait = no_wait
+
+ def pre_instance_update(self, instance):
+ instance.properties.application_profile.gallery_applications = [{"package_reference_id": avid} for avid in application_version_ids]
+
+ if order_applications:
+ index = 1
+ for app in instance.properties.application_profile.gallery_applications:
+ app["order"] = index
+ index += 1
+
+ if application_configuration_overrides:
+ index = 0
+ for over_ride in application_configuration_overrides:
+ if over_ride or over_ride.lower() != 'null':
+ instance.properties.application_profile.gallery_applications[index]["configuration_reference"] = over_ride
+ index += 1
+
+ if treat_deployment_as_failure:
+ index = 0
+ for treat_as_failure in treat_deployment_as_failure:
+ instance.properties.application_profile.gallery_applications[index]["treat_failure_as_deployment_failure"] = \
+ treat_as_failure.lower() == 'true'
+ index += 1
+
+ def _output(self, *args, **kwargs):
+ from azure.cli.core.aaz import AAZUndefined, has_value
+
+ # Resolve flatten conflict
+ # When the type field conflicts, the type in inner layer is ignored and the outer layer is applied
+ if has_value(self.ctx.vars.instance.resources):
+ for resource in self.ctx.vars.instance.resources:
+ if has_value(resource.type):
+ resource.type = AAZUndefined
+
+ result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True)
+ return result
+
+ return SetVMApplications(cli_ctx=cmd.cli_ctx)(command_args={
+ "resource_group": resource_group_name,
+ "vm_name": vm_name,
+ })
def list_vm_applications(cmd, vm_name, resource_group_name):
- client = _compute_client_factory(cmd.cli_ctx)
try:
- vm = client.virtual_machines.get(resource_group_name, vm_name)
+ from .operations.vm import VMShow
+ vm = VMShow(cli_ctx=cmd.cli_ctx)(command_args={
+ "resource_group": resource_group_name,
+ "vm_name": vm_name
+ })
except ResourceNotFoundError:
raise ResourceNotFoundError('Could not find vm {}.'.format(vm_name))
- return vm.application_profile
+ return vm.get("applicationProfile", {})
def set_vmss_applications(cmd, vmss_name, resource_group_name, application_version_ids, order_applications=False, application_configuration_overrides=None, treat_deployment_as_failure=None, no_wait=False):
diff --git a/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py b/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py
index 2a3e2f5bdea..75b715982b7 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/operations/vm.py
@@ -5,11 +5,26 @@
# 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.vm import ListSizes as _VMListSizes
+from ..aaz.latest.vm import Show as _VMShow, ListSizes as _VMListSizes
logger = get_logger(__name__)
+class VMShow(_VMShow):
+ def _output(self, *args, **kwargs):
+ from azure.cli.core.aaz import AAZUndefined, has_value
+
+ # Resolve flatten conflict
+ # When the type field conflicts, the type in inner layer is ignored and the outer layer is applied
+ if has_value(self.ctx.vars.instance.resources):
+ for resource in self.ctx.vars.instance.resources:
+ if has_value(resource.type):
+ resource.type = AAZUndefined
+
+ result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True)
+ return result
+
+
class VMListSizes(_VMListSizes):
@classmethod
def _build_arguments_schema(cls, *args, **kwargs):
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_add_application.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_add_application.yaml
index 64944bb4058..5893094d4f1 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_add_application.yaml
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_add_application.yaml
@@ -18,28 +18,34 @@ interactions:
,\n \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\"\
: {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"\
type\": \"object\",\n \"value\": {\n \"Linux\": {\n \"\
- CentOS85Gen2\": {\n \"publisher\": \"OpenLogic\",\n \
- \ \"offer\": \"CentOS\",\n \"sku\": \"8_5-gen2\",\n \
- \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \
- \ },\n \"Debian11\": {\n \"publisher\": \"Debian\"\
- ,\n \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\"\
- ,\n \"version\": \"latest\",\n \"architecture\": \"\
- x64\"\n },\n \"FlatcarLinuxFreeGen2\": {\n \"\
- publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\"\
- ,\n \"sku\": \"stable-gen2\",\n \"version\": \"latest\"\
- ,\n \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\"\
- : {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\"\
- ,\n \"sku\": \"gen2\",\n \"version\": \"latest\",\n\
- \ \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\"\
- : {\n \"publisher\": \"RedHat\",\n \"offer\": \"\
- RHEL\",\n \"sku\": \"8-lvm-gen2\",\n \"version\": \
- \ \"latest\",\n \"architecture\": \"x64\"\n },\n \
- \ \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n \
- \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \
- \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \
- \ },\n \"Ubuntu2204\": {\n \"publisher\": \"\
- Canonical\",\n \"offer\": \"0001-com-ubuntu-server-jammy\",\n\
- \ \"sku\": \"22_04-lts-gen2\",\n \"version\": \"latest\"\
+ CentOS85Gen2\": {\n \"publisher\": \"OpenLogic\",\n \
+ \ \"offer\": \"CentOS\",\n \"sku\": \"8_5-gen2\",\n \
+ \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \
+ \ },\n \"Debian11\": {\n \"publisher\": \"Debian\"\
+ ,\n \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\"\
+ ,\n \"version\": \"latest\",\n \"architecture\": \"\
+ x64\"\n },\n \"OpenSuseLeap154Gen2\": {\n \"\
+ publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n \
+ \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \
+ \ \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\"\
+ : {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\"\
+ ,\n \"sku\": \"8-lvm-gen2\",\n \"version\": \"latest\"\
+ ,\n \"architecture\": \"x64\"\n },\n \"SuseSles15SP5\"\
+ : {\n \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp5\"\
+ ,\n \"sku\": \"gen2\",\n \"version\": \"latest\",\n\
+ \ \"architecture\": \"x64\"\n },\n \"Ubuntu2204\"\
+ : {\n \"publisher\": \"Canonical\",\n \"offer\": \"\
+ 0001-com-ubuntu-server-jammy\",\n \"sku\": \"22_04-lts-gen2\",\n\
+ \ \"version\": \"latest\",\n \"architecture\": \"x64\"\
+ \n },\n \"Ubuntu2404\": {\n \"publisher\": \"\
+ Canonical\",\n \"offer\": \"ubuntu-24_04-lts\",\n \"\
+ sku\": \"server\",\n \"version\": \"latest\",\n \"architecture\"\
+ : \"x64\"\n },\n \"Ubuntu2404Pro\": {\n \"publisher\"\
+ : \"Canonical\",\n \"offer\": \"ubuntu-24_04-lts\",\n \
+ \ \"sku\": \"ubuntu-pro\",\n \"version\": \"latest\",\n \
+ \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\"\
+ : {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\"\
+ ,\n \"sku\": \"stable-gen2\",\n \"version\": \"latest\"\
,\n \"architecture\": \"x64\"\n }\n },\n \
\ \"Windows\": {\n \"Win2022Datacenter\": {\n \"publisher\"\
: \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n\
@@ -73,7 +79,7 @@ interactions:
connection:
- keep-alive
content-length:
- - '3384'
+ - '3790'
content-security-policy:
- default-src 'none'; style-src 'unsafe-inline'; sandbox
content-type:
@@ -81,13 +87,13 @@ interactions:
cross-origin-resource-policy:
- cross-origin
date:
- - Mon, 26 Aug 2024 09:57:53 GMT
+ - Tue, 04 Mar 2025 02:26:10 GMT
etag:
- - W/"8f34071e3f10c641931f33307d1319d34bae37f557ea31022a455502dae9ebc2"
+ - W/"0f53b56eda413b90fc6365dd4848831171968adfbf5b440c8da07b5866a97d67"
expires:
- - Mon, 26 Aug 2024 10:02:53 GMT
+ - Tue, 04 Mar 2025 02:31:10 GMT
source-age:
- - '187'
+ - '32'
strict-transport-security:
- max-age=31536000
vary:
@@ -101,15 +107,15 @@ interactions:
x-content-type-options:
- nosniff
x-fastly-request-id:
- - 1c38b68d3cc6184a7fa156fb62347635be007b86
+ - 3e2f35da2907c73d35d33b0f61a6a2b3e327126e
x-frame-options:
- deny
x-github-request-id:
- - 8060:3C8180:13D484:1818B3:66CC1340
+ - C72E:7AC17:334F663:3AA2722:67C62776
x-served-by:
- - cache-tyo11951-TYO
+ - cache-sin-wsss1830059-SIN
x-timer:
- - S1724666274.981158,VS0,VE1
+ - S1741055170.202010,VS0,VE1
x-xss-protection:
- 1; mode=block
status:
@@ -130,13 +136,13 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions?$top=1&$orderby=name%20desc&api-version=2024-07-01
response:
body:
- string: "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\"\
- ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\
+ string: "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\"\
+ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\
\r\n }\r\n]"
headers:
cache-control:
@@ -146,7 +152,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:53 GMT
+ - Tue, 04 Mar 2025 02:26:10 GMT
expires:
- '-1'
pragma:
@@ -158,11 +164,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15988,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43988
+ - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43998
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: EF839ADDF833445C80D6CAE6C0BF6070 Ref B: TYO201100115027 Ref C: 2024-08-26T09:57:54Z'
+ - 'Ref A: B08FC12BA6AD43168F6489005ADCA6C8 Ref B: SEL221051801031 Ref C: 2025-03-04T02:26:10Z'
status:
code: 200
message: OK
@@ -181,9 +187,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2655.240810?api-version=2024-07-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.3207.250210?api-version=2024-07-01
response:
body:
string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \
@@ -199,19 +205,19 @@ interactions:
,\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"\
name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n \
\ }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\
- ,\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n \
- \ },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\
- \n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\
+ ,\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n\
+ \ \"goLiveDate\": \"2025-02-13T00:00:00+00:00\"\r\n },\r\n \"location\"\
+ : \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\
\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1184'
+ - '1232'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:55 GMT
+ - Tue, 04 Mar 2025 02:26:10 GMT
expires:
- '-1'
pragma:
@@ -223,11 +229,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMImageFromLocation3Min;12989,Microsoft.Compute/GetVMImageFromLocation30Min;73989
+ - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73999
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: E0E2F8B6D02B4F618081271C60E1F476 Ref B: TYO201100116035 Ref C: 2024-08-26T09:57:55Z'
+ - 'Ref A: 14560559D59C464FAA6F22A292AE23D9 Ref B: SEL221051805051 Ref C: 2025-03-04T02:26:10Z'
status:
code: 200
message: OK
@@ -246,12 +252,12 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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
@@ -259,8 +265,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
@@ -268,8 +275,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
@@ -277,8 +285,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
@@ -286,8 +295,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
@@ -295,32 +305,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
@@ -335,13 +398,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
@@ -351,7 +414,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -361,7 +424,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -371,7 +434,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -380,20 +443,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
@@ -403,7 +466,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -413,7 +476,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -422,7 +485,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -431,7 +494,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -440,7 +503,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -449,7 +512,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -458,7 +521,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -467,7 +530,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -477,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"],"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
@@ -486,7 +549,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -495,8 +558,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
@@ -505,8 +568,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
@@ -515,8 +578,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
@@ -525,8 +588,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
@@ -536,7 +599,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -546,7 +609,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -555,7 +618,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
@@ -565,7 +628,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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
@@ -575,7 +638,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
@@ -584,15 +647,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
@@ -601,7 +664,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -610,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"],"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
@@ -620,16 +683,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
@@ -638,8 +701,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
@@ -648,14 +711,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
@@ -665,7 +729,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US 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
@@ -675,9 +739,21 @@ 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-09-01-preview","2024-07-01","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-09-01-preview","2024-07-01","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":"networkSecurityPerimeters","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
+ South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland
+ West","East Asia","South Africa North","UK South","South India","Australia
+ Southeast","France South","West US 2","Sweden Central","Japan West","Norway
+ 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","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-06-01-preview","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":"2024-07-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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
@@ -687,8 +763,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":["2024-07-01","2024-06-01-preview","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
@@ -698,8 +774,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":["2024-07-01","2024-06-01-preview","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
@@ -709,8 +785,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-09-01-preview","2024-07-01","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
@@ -720,8 +796,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-09-01-preview","2024-07-01","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
@@ -731,8 +807,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
@@ -742,8 +818,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-09-01-preview","2024-07-01","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
@@ -753,17 +829,34 @@ 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-09-01-preview","2024-07-01","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","West Central US","East US 2 EUAP","Central
+ US EUAP"],"apiVersions":["2024-07-01","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","West Central US","East US 2 EUAP","Central
+ US EUAP"],"apiVersions":["2024-07-01","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-07-01","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-07-01","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
@@ -773,8 +866,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":["2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-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
@@ -782,7 +875,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-07-01","2024-05-01","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
@@ -790,7 +883,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-07-01","2024-05-01","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
@@ -800,8 +893,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-07-01","2024-05-01","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
@@ -812,8 +905,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-07-01","2024-05-01","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-07-01","2024-05-01","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-07-01","2024-05-01","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-07-01","2024-05-01","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
@@ -823,8 +917,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-07-01","2024-05-01","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
@@ -835,11 +929,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-07-01","2024-05-01","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-07-01","2024-05-01","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
@@ -849,13 +943,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
@@ -865,7 +959,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -874,7 +968,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -883,14 +977,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
@@ -900,7 +995,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -909,20 +1004,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
@@ -932,7 +1027,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -941,7 +1036,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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
@@ -950,20 +1045,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
@@ -973,13 +1068,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
@@ -989,7 +1084,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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
@@ -999,13 +1094,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
@@ -1015,7 +1110,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
@@ -1023,8 +1118,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
@@ -1033,14 +1128,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
@@ -1050,7 +1145,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1060,7 +1155,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1070,7 +1165,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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
@@ -1080,7 +1175,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1090,7 +1185,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1100,7 +1195,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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
@@ -1109,20 +1204,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
@@ -1132,7 +1227,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1142,7 +1237,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1152,7 +1247,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1162,8 +1257,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
@@ -1172,7 +1267,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1181,7 +1276,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1190,7 +1285,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1199,7 +1294,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","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
@@ -1208,7 +1303,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","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
@@ -1217,7 +1312,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1226,7 +1321,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1235,7 +1330,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1244,7 +1339,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
@@ -1253,7 +1348,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
@@ -1262,7 +1357,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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
@@ -1271,7 +1366,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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
@@ -1280,7 +1375,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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
@@ -1289,7 +1384,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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
@@ -1298,7 +1393,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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
@@ -1307,7 +1402,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1316,7 +1411,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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
@@ -1325,7 +1420,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -1334,7 +1429,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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
@@ -1343,7 +1438,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1352,7 +1447,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1361,7 +1456,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1370,7 +1465,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1379,7 +1474,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1388,7 +1483,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -1398,13 +1493,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
@@ -1414,7 +1509,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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
@@ -1423,7 +1518,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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
@@ -1432,8 +1527,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
@@ -1443,7 +1538,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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
@@ -1452,7 +1547,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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
@@ -1462,7 +1557,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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
@@ -1471,7 +1566,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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
@@ -1480,7 +1575,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -1489,7 +1584,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -1498,7 +1593,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -1507,7 +1602,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -1516,7 +1611,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -1540,31 +1635,19 @@ 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,
- 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
- 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
- North","Germany West Central","Switzerland West","East Asia","South Africa
- North","UK South","South India","Australia Southeast","France South","West
- US 2","Sweden Central","Japan West","Norway 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"],"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 STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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":"networkWatchers/lenses","locations":["Central
+ US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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'
+ - '205778'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:56 GMT
+ - Tue, 04 Mar 2025 02:26:12 GMT
expires:
- '-1'
pragma:
@@ -1578,7 +1661,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 009B9E2A163D4473B280F73E30E18686 Ref B: TYO201100116029 Ref C: 2024-08-26T09:57:55Z'
+ - 'Ref A: CE53F931CA8045708F5D83ED057B4525 Ref B: SEL221051805023 Ref C: 2025-03-04T02:26:11Z'
status:
code: 200
message: OK
@@ -1597,9 +1680,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/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''
@@ -1613,7 +1696,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:56 GMT
+ - Tue, 04 Mar 2025 02:26:13 GMT
expires:
- '-1'
pragma:
@@ -1627,7 +1710,7 @@ interactions:
x-ms-failure-cause:
- gateway
x-msedge-ref:
- - 'Ref A: 097DF5F65AA04477984D54DCCC890A4A Ref B: TYO201100116011 Ref C: 2024-08-26T09:57:56Z'
+ - 'Ref A: 41A08C7ABA5B4D1AAE289C54F531E0A6 Ref B: SEL221051503039 Ref C: 2025-03-04T02:26:13Z'
status:
code: 404
message: Not Found
@@ -1650,28 +1733,34 @@ interactions:
,\n \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\"\
: {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"\
type\": \"object\",\n \"value\": {\n \"Linux\": {\n \"\
- CentOS85Gen2\": {\n \"publisher\": \"OpenLogic\",\n \
- \ \"offer\": \"CentOS\",\n \"sku\": \"8_5-gen2\",\n \
- \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \
- \ },\n \"Debian11\": {\n \"publisher\": \"Debian\"\
- ,\n \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\"\
- ,\n \"version\": \"latest\",\n \"architecture\": \"\
- x64\"\n },\n \"FlatcarLinuxFreeGen2\": {\n \"\
- publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\"\
- ,\n \"sku\": \"stable-gen2\",\n \"version\": \"latest\"\
- ,\n \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\"\
- : {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\"\
- ,\n \"sku\": \"gen2\",\n \"version\": \"latest\",\n\
- \ \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\"\
- : {\n \"publisher\": \"RedHat\",\n \"offer\": \"\
- RHEL\",\n \"sku\": \"8-lvm-gen2\",\n \"version\": \
- \ \"latest\",\n \"architecture\": \"x64\"\n },\n \
- \ \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n \
- \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \
- \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \
- \ },\n \"Ubuntu2204\": {\n \"publisher\": \"\
- Canonical\",\n \"offer\": \"0001-com-ubuntu-server-jammy\",\n\
- \ \"sku\": \"22_04-lts-gen2\",\n \"version\": \"latest\"\
+ CentOS85Gen2\": {\n \"publisher\": \"OpenLogic\",\n \
+ \ \"offer\": \"CentOS\",\n \"sku\": \"8_5-gen2\",\n \
+ \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \
+ \ },\n \"Debian11\": {\n \"publisher\": \"Debian\"\
+ ,\n \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\"\
+ ,\n \"version\": \"latest\",\n \"architecture\": \"\
+ x64\"\n },\n \"OpenSuseLeap154Gen2\": {\n \"\
+ publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n \
+ \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \
+ \ \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\"\
+ : {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\"\
+ ,\n \"sku\": \"8-lvm-gen2\",\n \"version\": \"latest\"\
+ ,\n \"architecture\": \"x64\"\n },\n \"SuseSles15SP5\"\
+ : {\n \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp5\"\
+ ,\n \"sku\": \"gen2\",\n \"version\": \"latest\",\n\
+ \ \"architecture\": \"x64\"\n },\n \"Ubuntu2204\"\
+ : {\n \"publisher\": \"Canonical\",\n \"offer\": \"\
+ 0001-com-ubuntu-server-jammy\",\n \"sku\": \"22_04-lts-gen2\",\n\
+ \ \"version\": \"latest\",\n \"architecture\": \"x64\"\
+ \n },\n \"Ubuntu2404\": {\n \"publisher\": \"\
+ Canonical\",\n \"offer\": \"ubuntu-24_04-lts\",\n \"\
+ sku\": \"server\",\n \"version\": \"latest\",\n \"architecture\"\
+ : \"x64\"\n },\n \"Ubuntu2404Pro\": {\n \"publisher\"\
+ : \"Canonical\",\n \"offer\": \"ubuntu-24_04-lts\",\n \
+ \ \"sku\": \"ubuntu-pro\",\n \"version\": \"latest\",\n \
+ \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\"\
+ : {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\"\
+ ,\n \"sku\": \"stable-gen2\",\n \"version\": \"latest\"\
,\n \"architecture\": \"x64\"\n }\n },\n \
\ \"Windows\": {\n \"Win2022Datacenter\": {\n \"publisher\"\
: \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n\
@@ -1705,7 +1794,7 @@ interactions:
connection:
- keep-alive
content-length:
- - '3384'
+ - '3790'
content-security-policy:
- default-src 'none'; style-src 'unsafe-inline'; sandbox
content-type:
@@ -1713,13 +1802,13 @@ interactions:
cross-origin-resource-policy:
- cross-origin
date:
- - Mon, 26 Aug 2024 09:57:57 GMT
+ - Tue, 04 Mar 2025 02:26:14 GMT
etag:
- - W/"8f34071e3f10c641931f33307d1319d34bae37f557ea31022a455502dae9ebc2"
+ - W/"0f53b56eda413b90fc6365dd4848831171968adfbf5b440c8da07b5866a97d67"
expires:
- - Mon, 26 Aug 2024 10:02:57 GMT
+ - Tue, 04 Mar 2025 02:31:14 GMT
source-age:
- - '191'
+ - '36'
strict-transport-security:
- max-age=31536000
vary:
@@ -1733,15 +1822,15 @@ interactions:
x-content-type-options:
- nosniff
x-fastly-request-id:
- - 95e41406b98485fc9abf98384ce07db3de2d8110
+ - 611883431826573f4b433b9f0a7bb96ec9959b02
x-frame-options:
- deny
x-github-request-id:
- - 8060:3C8180:13D484:1818B3:66CC1340
+ - C72E:7AC17:334F663:3AA2722:67C62776
x-served-by:
- - cache-tyo11962-TYO
+ - cache-sin-wsss1830030-SIN
x-timer:
- - S1724666277.413045,VS0,VE1
+ - S1741055174.046568,VS0,VE1
x-xss-protection:
- 1; mode=block
status:
@@ -1762,13 +1851,13 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions?$top=1&$orderby=name%20desc&api-version=2024-07-01
response:
body:
- string: "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\"\
- ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\
+ string: "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\"\
+ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\
\r\n }\r\n]"
headers:
cache-control:
@@ -1778,7 +1867,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:57 GMT
+ - Tue, 04 Mar 2025 02:26:14 GMT
expires:
- '-1'
pragma:
@@ -1790,11 +1879,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15985,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43985
+ - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15996,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43996
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3748'
x-msedge-ref:
- - 'Ref A: F7AEACA8182A4F52885A03BF9390D430 Ref B: TYO201151002023 Ref C: 2024-08-26T09:57:57Z'
+ - 'Ref A: C844677E25C947FF9D64AD27DBAD94BA Ref B: SEL221051801051 Ref C: 2025-03-04T02:26:14Z'
status:
code: 200
message: OK
@@ -1813,9 +1902,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2655.240810?api-version=2024-07-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.3207.250210?api-version=2024-07-01
response:
body:
string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \
@@ -1831,19 +1920,19 @@ interactions:
,\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"\
name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n \
\ }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\
- ,\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n \
- \ },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\
- \n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\
+ ,\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n\
+ \ \"goLiveDate\": \"2025-02-13T00:00:00+00:00\"\r\n },\r\n \"location\"\
+ : \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\
\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1184'
+ - '1232'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:58 GMT
+ - Tue, 04 Mar 2025 02:26:14 GMT
expires:
- '-1'
pragma:
@@ -1855,11 +1944,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMImageFromLocation3Min;12986,Microsoft.Compute/GetVMImageFromLocation30Min;73986
+ - Microsoft.Compute/GetVMImageFromLocation3Min;12996,Microsoft.Compute/GetVMImageFromLocation30Min;73996
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: F10BF4ACEC304BB6B8C935EB5AA3F5B4 Ref B: TYO201151001011 Ref C: 2024-08-26T09:57:58Z'
+ - 'Ref A: 67E45E724BB74CD1A86A35945BB20A94 Ref B: SEL221051804035 Ref C: 2025-03-04T02:26:14Z'
status:
code: 200
message: OK
@@ -1878,13 +1967,13 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions?$top=1&$orderby=name%20desc&api-version=2024-07-01
response:
body:
- string: "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\"\
- ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\
+ string: "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\"\
+ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\
\r\n }\r\n]"
headers:
cache-control:
@@ -1894,7 +1983,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:59 GMT
+ - Tue, 04 Mar 2025 02:26:15 GMT
expires:
- '-1'
pragma:
@@ -1906,11 +1995,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15984,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43984
+ - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15992,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43992
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 9AB0E4884D9C450FB5C13B39B2BBEDB9 Ref B: TYO201151004011 Ref C: 2024-08-26T09:57:59Z'
+ - 'Ref A: 0562ADEFF7784AC884BC719F51C955F0 Ref B: SEL221051804033 Ref C: 2025-03-04T02:26:15Z'
status:
code: 200
message: OK
@@ -1929,9 +2018,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2655.240810?api-version=2024-07-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.3207.250210?api-version=2024-07-01
response:
body:
string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \
@@ -1947,19 +2036,19 @@ interactions:
,\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"\
name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n \
\ }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\
- ,\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n \
- \ },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\
- \n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\
+ ,\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n\
+ \ \"goLiveDate\": \"2025-02-13T00:00:00+00:00\"\r\n },\r\n \"location\"\
+ : \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\
\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1184'
+ - '1232'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:58:00 GMT
+ - Tue, 04 Mar 2025 02:26:17 GMT
expires:
- '-1'
pragma:
@@ -1971,11 +2060,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMImageFromLocation3Min;12985,Microsoft.Compute/GetVMImageFromLocation30Min;73985
+ - Microsoft.Compute/GetVMImageFromLocation3Min;12992,Microsoft.Compute/GetVMImageFromLocation30Min;73992
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: D50A5194360A400D8DCAD22272D4EE14 Ref B: TYO201100114017 Ref C: 2024-08-26T09:58:00Z'
+ - 'Ref A: 9559FADF3AFA4FFAAA5EDF4B9AF8AB83 Ref B: SEL221051801019 Ref C: 2025-03-04T02:26:16Z'
status:
code: 200
message: OK
@@ -1994,12 +2083,12 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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
@@ -2007,8 +2096,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
@@ -2016,8 +2106,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
@@ -2025,8 +2116,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
@@ -2034,8 +2126,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
@@ -2043,32 +2136,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
@@ -2083,13 +2229,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
@@ -2099,7 +2245,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2109,7 +2255,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2119,7 +2265,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2128,20 +2274,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
@@ -2151,7 +2297,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2161,7 +2307,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2170,7 +2316,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2179,7 +2325,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2188,7 +2334,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -2197,7 +2343,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -2206,7 +2352,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -2215,7 +2361,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2225,7 +2371,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2234,7 +2380,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2243,8 +2389,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
@@ -2253,8 +2399,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
@@ -2263,8 +2409,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
@@ -2273,8 +2419,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
@@ -2284,7 +2430,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -2294,7 +2440,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -2303,7 +2449,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
@@ -2313,7 +2459,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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
@@ -2323,7 +2469,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
@@ -2332,15 +2478,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
@@ -2349,7 +2495,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -2358,7 +2504,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","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
@@ -2368,16 +2514,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
@@ -2386,8 +2532,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
@@ -2396,14 +2542,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
@@ -2413,7 +2560,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US 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
@@ -2423,9 +2570,21 @@ 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-09-01-preview","2024-07-01","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-09-01-preview","2024-07-01","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":"networkSecurityPerimeters","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
+ South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland
+ West","East Asia","South Africa North","UK South","South India","Australia
+ Southeast","France South","West US 2","Sweden Central","Japan West","Norway
+ 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","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-06-01-preview","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":"2024-07-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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
@@ -2435,8 +2594,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":["2024-07-01","2024-06-01-preview","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
@@ -2446,8 +2605,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":["2024-07-01","2024-06-01-preview","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
@@ -2457,8 +2616,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-09-01-preview","2024-07-01","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
@@ -2468,8 +2627,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-09-01-preview","2024-07-01","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
@@ -2479,8 +2638,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
@@ -2490,8 +2649,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-09-01-preview","2024-07-01","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
@@ -2501,17 +2660,34 @@ 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-09-01-preview","2024-07-01","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","West Central US","East US 2 EUAP","Central
+ US EUAP"],"apiVersions":["2024-07-01","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","West Central US","East US 2 EUAP","Central
+ US EUAP"],"apiVersions":["2024-07-01","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-07-01","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-07-01","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
@@ -2521,8 +2697,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":["2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-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
@@ -2530,7 +2706,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-07-01","2024-05-01","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
@@ -2538,7 +2714,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-07-01","2024-05-01","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
@@ -2548,8 +2724,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-07-01","2024-05-01","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
@@ -2560,8 +2736,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-07-01","2024-05-01","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-07-01","2024-05-01","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-07-01","2024-05-01","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-07-01","2024-05-01","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
@@ -2571,8 +2748,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-07-01","2024-05-01","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
@@ -2583,11 +2760,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-07-01","2024-05-01","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-07-01","2024-05-01","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
@@ -2597,13 +2774,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
@@ -2613,7 +2790,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2622,7 +2799,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -2631,14 +2808,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
@@ -2648,7 +2826,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2657,20 +2835,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
@@ -2680,7 +2858,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -2689,7 +2867,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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
@@ -2698,20 +2876,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
@@ -2721,13 +2899,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
@@ -2737,7 +2915,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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
@@ -2747,13 +2925,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
@@ -2763,7 +2941,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
@@ -2771,8 +2949,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
@@ -2781,14 +2959,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
@@ -2798,7 +2976,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2808,7 +2986,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2818,7 +2996,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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
@@ -2828,7 +3006,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -2838,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","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2848,7 +3026,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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
@@ -2857,20 +3035,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
@@ -2880,7 +3058,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2890,7 +3068,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2900,7 +3078,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2910,8 +3088,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
@@ -2920,7 +3098,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2929,7 +3107,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2938,7 +3116,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2947,7 +3125,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","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
@@ -2956,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"],"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
@@ -2965,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","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2974,7 +3152,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2983,7 +3161,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -2992,7 +3170,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
@@ -3001,7 +3179,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
@@ -3010,7 +3188,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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
@@ -3019,7 +3197,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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
@@ -3028,7 +3206,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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
@@ -3037,7 +3215,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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
@@ -3046,7 +3224,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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
@@ -3055,7 +3233,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -3064,7 +3242,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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
@@ -3073,7 +3251,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -3082,7 +3260,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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
@@ -3091,7 +3269,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -3100,7 +3278,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -3109,7 +3287,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -3118,7 +3296,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -3127,7 +3305,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -3136,7 +3314,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -3146,13 +3324,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
@@ -3162,7 +3340,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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
@@ -3171,7 +3349,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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
@@ -3180,8 +3358,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
@@ -3191,7 +3369,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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
@@ -3200,7 +3378,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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
@@ -3210,7 +3388,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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
@@ -3219,7 +3397,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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
@@ -3228,7 +3406,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -3237,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"],"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
@@ -3246,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"],"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
@@ -3255,7 +3433,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -3264,7 +3442,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -3288,31 +3466,19 @@ 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,
- 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
- 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
- North","Germany West Central","Switzerland West","East Asia","South Africa
- North","UK South","South India","Australia Southeast","France South","West
- US 2","Sweden Central","Japan West","Norway 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"],"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 STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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":"networkWatchers/lenses","locations":["Central
+ US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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'
+ - '205778'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:58:02 GMT
+ - Tue, 04 Mar 2025 02:26:19 GMT
expires:
- '-1'
pragma:
@@ -3326,7 +3492,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 1225379D0D624D20A76DD6902FC025EC Ref B: TYO201151005052 Ref C: 2024-08-26T09:58:01Z'
+ - 'Ref A: 7A7BC37015BE450781A0592426685C7A Ref B: SEL221051504025 Ref C: 2025-03-04T02:26:17Z'
status:
code: 200
message: OK
@@ -3345,9 +3511,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2024-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2024-05-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/virtualNetworks/vnet1''
@@ -3361,7 +3527,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:58:03 GMT
+ - Tue, 04 Mar 2025 02:26:19 GMT
expires:
- '-1'
pragma:
@@ -3375,7 +3541,7 @@ interactions:
x-ms-failure-cause:
- gateway
x-msedge-ref:
- - 'Ref A: F397454B519D42DA828CB21D1631FC6C Ref B: TYO201151003034 Ref C: 2024-08-26T09:58:03Z'
+ - 'Ref A: F007D0F450A048E783C9665B8AA72D52 Ref B: SEL221051504037 Ref C: 2025-03-04T02:26:19Z'
status:
code: 404
message: Not Found
@@ -3427,15 +3593,15 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_UcZ9LwjlD0NsyozF9rm0FVUyU0jjattw","name":"vm_deploy_UcZ9LwjlD0NsyozF9rm0FVUyU0jjattw","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16874497929843378785","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-26T09:58:08.5302874Z","duration":"PT0.000428S","correlationId":"98690166-d030-47c7-b034-719f613fe628","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus"]},{"resourceType":"networkSecurityGroups","locations":["eastus"]},{"resourceType":"publicIPAddresses","locations":["eastus"]},{"resourceType":"networkInterfaces","locations":["eastus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_2AHilF0ZVkN5qPKXkJHSplIdAw8BmXLk","name":"vm_deploy_2AHilF0ZVkN5qPKXkJHSplIdAw8BmXLk","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5979703381537045813","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-03-04T02:26:21.7200742Z","duration":"PT3.9849383S","correlationId":"83bb7594-b80f-4650-9af8-9be4906bff99","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus"]},{"resourceType":"networkSecurityGroups","locations":["eastus"]},{"resourceType":"publicIPAddresses","locations":["eastus"]},{"resourceType":"networkInterfaces","locations":["eastus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_UcZ9LwjlD0NsyozF9rm0FVUyU0jjattw/operationStatuses/08584769405994156566?api-version=2022-09-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_2AHilF0ZVkN5qPKXkJHSplIdAw8BmXLk/operationStatuses/08584605517037533012?api-version=2022-09-01&t=638766519881264125&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=GNFmrJv_LaO9Prw_WA5_c6c44RGYC9Oqwn75yp6TJ4nHLbxJTcqE6VzRySuqnaofPAn6DhCsK06KJj_euVQCBzZLQOCav_sOkpv65IzXkiAlt6vF32Hd0S-CBzSNHR9tcp5LbF1b4pW6I6XlffUxw2IhvHAspl_ZDJivpkJXRUfolvyTXJgQwsTi6cbICniXIWKRCWL3Wb0q40h1SnichSKP0diSDLrgpc0ArFD1jfU7InQ-PRAyM3Cd_J9IEV0qKcEJlu93GXvz8EyrlFGad0iY1KCQamxFJJvEzUNU7SzqomeYp70zHngOUU2_YkoiMJS_gtg8JwU8iaytxO1agg&h=oTOAj8mzlPjg2j4i4hn2_HI2e0QkI8s8eMXNOU8vOjg
cache-control:
- no-cache
content-length:
@@ -3443,7 +3609,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:58:08 GMT
+ - Tue, 04 Mar 2025 02:26:27 GMT
expires:
- '-1'
pragma:
@@ -3455,13 +3621,13 @@ interactions:
x-content-type-options:
- nosniff
x-ms-deployment-engine-version:
- - 1.95.0
+ - 1.245.0
x-ms-ratelimit-remaining-subscription-global-writes:
- '2999'
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: AF347FE50A1A49A9A87F9157CB29E11A Ref B: TYO201151002042 Ref C: 2024-08-26T09:58:04Z'
+ - 'Ref A: E3BD0396A1CC4C639910DFA79725053B Ref B: SEL221051503019 Ref C: 2025-03-04T02:26:20Z'
status:
code: 201
message: Created
@@ -3480,21 +3646,21 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769405994156566?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584605517037533012?api-version=2022-09-01&t=638766519881264125&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=GNFmrJv_LaO9Prw_WA5_c6c44RGYC9Oqwn75yp6TJ4nHLbxJTcqE6VzRySuqnaofPAn6DhCsK06KJj_euVQCBzZLQOCav_sOkpv65IzXkiAlt6vF32Hd0S-CBzSNHR9tcp5LbF1b4pW6I6XlffUxw2IhvHAspl_ZDJivpkJXRUfolvyTXJgQwsTi6cbICniXIWKRCWL3Wb0q40h1SnichSKP0diSDLrgpc0ArFD1jfU7InQ-PRAyM3Cd_J9IEV0qKcEJlu93GXvz8EyrlFGad0iY1KCQamxFJJvEzUNU7SzqomeYp70zHngOUU2_YkoiMJS_gtg8JwU8iaytxO1agg&h=oTOAj8mzlPjg2j4i4hn2_HI2e0QkI8s8eMXNOU8vOjg
response:
body:
- string: '{"status":"Accepted"}'
+ string: '{"status":"Running"}'
headers:
cache-control:
- no-cache
content-length:
- - '21'
+ - '20'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:58:09 GMT
+ - Tue, 04 Mar 2025 02:26:28 GMT
expires:
- '-1'
pragma:
@@ -3508,7 +3674,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: B6EA64312AC441B7AE1305529EC3381A Ref B: TYO201151002042 Ref C: 2024-08-26T09:58:09Z'
+ - 'Ref A: 865DDCC63E564815AFA59788D6DC110E Ref B: SEL221051503019 Ref C: 2025-03-04T02:26:28Z'
status:
code: 200
message: OK
@@ -3527,9 +3693,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769405994156566?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584605517037533012?api-version=2022-09-01&t=638766519881264125&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=GNFmrJv_LaO9Prw_WA5_c6c44RGYC9Oqwn75yp6TJ4nHLbxJTcqE6VzRySuqnaofPAn6DhCsK06KJj_euVQCBzZLQOCav_sOkpv65IzXkiAlt6vF32Hd0S-CBzSNHR9tcp5LbF1b4pW6I6XlffUxw2IhvHAspl_ZDJivpkJXRUfolvyTXJgQwsTi6cbICniXIWKRCWL3Wb0q40h1SnichSKP0diSDLrgpc0ArFD1jfU7InQ-PRAyM3Cd_J9IEV0qKcEJlu93GXvz8EyrlFGad0iY1KCQamxFJJvEzUNU7SzqomeYp70zHngOUU2_YkoiMJS_gtg8JwU8iaytxO1agg&h=oTOAj8mzlPjg2j4i4hn2_HI2e0QkI8s8eMXNOU8vOjg
response:
body:
string: '{"status":"Running"}'
@@ -3541,7 +3707,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:58:39 GMT
+ - Tue, 04 Mar 2025 02:26:58 GMT
expires:
- '-1'
pragma:
@@ -3555,7 +3721,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: E837B0B3A7AC48ACB61CBDF361E1C721 Ref B: TYO201151002042 Ref C: 2024-08-26T09:58:40Z'
+ - 'Ref A: 786102869DAC43F498CEA130F1B74F51 Ref B: SEL221051503019 Ref C: 2025-03-04T02:26:58Z'
status:
code: 200
message: OK
@@ -3574,9 +3740,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769405994156566?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584605517037533012?api-version=2022-09-01&t=638766519881264125&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=GNFmrJv_LaO9Prw_WA5_c6c44RGYC9Oqwn75yp6TJ4nHLbxJTcqE6VzRySuqnaofPAn6DhCsK06KJj_euVQCBzZLQOCav_sOkpv65IzXkiAlt6vF32Hd0S-CBzSNHR9tcp5LbF1b4pW6I6XlffUxw2IhvHAspl_ZDJivpkJXRUfolvyTXJgQwsTi6cbICniXIWKRCWL3Wb0q40h1SnichSKP0diSDLrgpc0ArFD1jfU7InQ-PRAyM3Cd_J9IEV0qKcEJlu93GXvz8EyrlFGad0iY1KCQamxFJJvEzUNU7SzqomeYp70zHngOUU2_YkoiMJS_gtg8JwU8iaytxO1agg&h=oTOAj8mzlPjg2j4i4hn2_HI2e0QkI8s8eMXNOU8vOjg
response:
body:
string: '{"status":"Running"}'
@@ -3588,7 +3754,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:11 GMT
+ - Tue, 04 Mar 2025 02:27:29 GMT
expires:
- '-1'
pragma:
@@ -3602,7 +3768,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 355F4D740F304E50B581291035A51C83 Ref B: TYO201151002042 Ref C: 2024-08-26T09:59:11Z'
+ - 'Ref A: B1FAE31272B54DD28D7303824C584B42 Ref B: SEL221051503019 Ref C: 2025-03-04T02:27:29Z'
status:
code: 200
message: OK
@@ -3621,9 +3787,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769405994156566?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584605517037533012?api-version=2022-09-01&t=638766519881264125&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=GNFmrJv_LaO9Prw_WA5_c6c44RGYC9Oqwn75yp6TJ4nHLbxJTcqE6VzRySuqnaofPAn6DhCsK06KJj_euVQCBzZLQOCav_sOkpv65IzXkiAlt6vF32Hd0S-CBzSNHR9tcp5LbF1b4pW6I6XlffUxw2IhvHAspl_ZDJivpkJXRUfolvyTXJgQwsTi6cbICniXIWKRCWL3Wb0q40h1SnichSKP0diSDLrgpc0ArFD1jfU7InQ-PRAyM3Cd_J9IEV0qKcEJlu93GXvz8EyrlFGad0iY1KCQamxFJJvEzUNU7SzqomeYp70zHngOUU2_YkoiMJS_gtg8JwU8iaytxO1agg&h=oTOAj8mzlPjg2j4i4hn2_HI2e0QkI8s8eMXNOU8vOjg
response:
body:
string: '{"status":"Succeeded"}'
@@ -3635,7 +3801,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:42 GMT
+ - Tue, 04 Mar 2025 02:28:00 GMT
expires:
- '-1'
pragma:
@@ -3649,7 +3815,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 8655C4DB1B014BADA6166F50C60813D9 Ref B: TYO201151002042 Ref C: 2024-08-26T09:59:42Z'
+ - 'Ref A: A82639B40D52450ABE771DA1C0604ADA Ref B: SEL221051503019 Ref C: 2025-03-04T02:28:00Z'
status:
code: 200
message: OK
@@ -3668,21 +3834,21 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_UcZ9LwjlD0NsyozF9rm0FVUyU0jjattw","name":"vm_deploy_UcZ9LwjlD0NsyozF9rm0FVUyU0jjattw","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16874497929843378785","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-26T09:59:20.1051241Z","duration":"PT1M11.5752647S","correlationId":"98690166-d030-47c7-b034-719f613fe628","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus"]},{"resourceType":"networkSecurityGroups","locations":["eastus"]},{"resourceType":"publicIPAddresses","locations":["eastus"]},{"resourceType":"networkInterfaces","locations":["eastus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_2AHilF0ZVkN5qPKXkJHSplIdAw8BmXLk","name":"vm_deploy_2AHilF0ZVkN5qPKXkJHSplIdAw8BmXLk","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5979703381537045813","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-03-04T02:27:46.0966661Z","duration":"PT1M20.3925828S","correlationId":"83bb7594-b80f-4650-9af8-9be4906bff99","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus"]},{"resourceType":"networkSecurityGroups","locations":["eastus"]},{"resourceType":"publicIPAddresses","locations":["eastus"]},{"resourceType":"networkInterfaces","locations":["eastus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1"}]}}'
headers:
cache-control:
- no-cache
content-length:
- - '3135'
+ - '3134'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:43 GMT
+ - Tue, 04 Mar 2025 02:28:01 GMT
expires:
- '-1'
pragma:
@@ -3696,7 +3862,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: EC196EA3D46F47BB8BA157E742F7122D Ref B: TYO201151002042 Ref C: 2024-08-26T09:59:42Z'
+ - 'Ref A: 12B3A4327CEF41A49146259D441AF38C Ref B: SEL221051503019 Ref C: 2025-03-04T02:28:01Z'
status:
code: 200
message: OK
@@ -3715,7 +3881,7 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2024-07-01
response:
@@ -3724,16 +3890,16 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"03a3ccf9-c82b-4a80-af3d-1ed9f05e0a0d\"\
+ : \"Succeeded\",\r\n \"vmId\": \"804776a9-a5e1-48fd-b352-f478f083a8fb\"\
,\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"\
publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\"\
,\r\n \"sku\": \"2022-datacenter-g2\",\r\n \"version\": \"latest\"\
- ,\r\n \"exactVersion\": \"20348.2655.240810\"\r\n },\r\n \
+ ,\r\n \"exactVersion\": \"20348.3207.250210\"\r\n },\r\n \
\ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"\
- vm1_OsDisk_1_fe934e6efb954447ada86c068211e368\",\r\n \"createOption\"\
+ vm1_OsDisk_1_e05ced0f38224579983979fb55e1b7fc\",\r\n \"createOption\"\
: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\"\
: {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_fe934e6efb954447ada86c068211e368\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e05ced0f38224579983979fb55e1b7fc\"\
\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\
: 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\"\
: \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"\
@@ -3752,20 +3918,20 @@ interactions:
\ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\"\
,\r\n \"level\": \"Warning\",\r\n \"displayStatus\"\
: \"Not Ready\",\r\n \"message\": \"VM status blob is found but\
- \ not yet populated.\",\r\n \"time\": \"2024-08-26T09:59:44+00:00\"\
+ \ not yet populated.\",\r\n \"time\": \"2025-03-04T02:28:02+00:00\"\
\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n \
- \ {\r\n \"name\": \"vm1_OsDisk_1_fe934e6efb954447ada86c068211e368\"\
+ \ {\r\n \"name\": \"vm1_OsDisk_1_e05ced0f38224579983979fb55e1b7fc\"\
,\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:58:23.9655998+00:00\"\r\n }\r\
+ \ \"time\": \"2025-03-04T02:26:43.7166692+00:00\"\r\n }\r\
\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V2\"\
,\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\
,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\
- \ succeeded\",\r\n \"time\": \"2024-08-26T09:59:15.2002971+00:00\"\
+ \ succeeded\",\r\n \"time\": \"2025-03-04T02:27:42.5136531+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:58:20.5436987+00:00\"\
+ \r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-03-04T02:26:40.3416647+00:00\"\
\r\n },\r\n \"etag\": \"\\\"2\\\"\"\r\n}"
headers:
cache-control:
@@ -3775,7 +3941,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:43 GMT
+ - Tue, 04 Mar 2025 02:28:02 GMT
expires:
- '-1'
pragma:
@@ -3786,12 +3952,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;23997,Microsoft.Compute/LowCostGetResource;33
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23993,Microsoft.Compute/LowCostGetResource;33
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 1FB8332C35EB443797B573C3F919DCF2 Ref B: TYO201151004029 Ref C: 2024-08-26T09:59:43Z'
+ - 'Ref A: 2C7BA2B85C914367A93D06991EFB8840 Ref B: SEL221051503035 Ref C: 2025-03-04T02:28:02Z'
status:
code: 200
message: ''
@@ -3810,12 +3978,12 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2022-01-01
response:
body:
- string: '{"name":"vm1VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","etag":"W/\"0a6bc73d-06de-4dee-906d-65cdff3a09ea\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"7a4bfb33-90bb-40f3-ad12-8cad9344ddfe","ipConfigurations":[{"name":"ipconfigvm1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1","etag":"W/\"0a6bc73d-06de-4dee-906d-65cdff3a09ea\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"1rgjgfusf0cunprb22svrq2web.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-55-AD-5E","enableAcceleratedNetworking":false,"vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":true,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"eastus","kind":"Regular"}'
+ string: '{"name":"vm1VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","etag":"W/\"05ceb565-3057-47b9-bc85-f45f68ff4474\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"115b80e4-8d73-47b6-92fe-ee2f48596255","ipConfigurations":[{"name":"ipconfigvm1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1","etag":"W/\"05ceb565-3057-47b9-bc85-f45f68ff4474\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"cee0o00jwwuelk5cqub4mmrqeg.bx.internal.cloudapp.net"},"macAddress":"00-22-48-35-54-21","enableAcceleratedNetworking":false,"vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":true,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"eastus","kind":"Regular"}'
headers:
cache-control:
- no-cache
@@ -3824,9 +3992,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:44 GMT
+ - Tue, 04 Mar 2025 02:28:03 GMT
etag:
- - W/"0a6bc73d-06de-4dee-906d-65cdff3a09ea"
+ - W/"05ceb565-3057-47b9-bc85-f45f68ff4474"
expires:
- '-1'
pragma:
@@ -3838,11 +4006,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - d86cbb43-06e8-4c86-a517-50b3bb49598f
+ - 837d8728-de8f-4e42-ad37-da451d963066
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3748'
x-msedge-ref:
- - 'Ref A: BA3C12D1E1EB46B1B09719C6448B4E21 Ref B: TYO201100116021 Ref C: 2024-08-26T09:59:44Z'
+ - 'Ref A: F81B76CB34BA41C487FD2D44BD69026A Ref B: SEL221051504021 Ref C: 2025-03-04T02:28:02Z'
status:
code: 200
message: OK
@@ -3861,23 +4029,23 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2022-01-01
response:
body:
- string: '{"name":"vm1PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","etag":"W/\"26603820-a2d3-469f-8ed7-404dd44b1276\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"3ffcb069-f358-4aa2-8d42-22f0b7147e78","ipAddress":"52.190.0.238","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}'
+ string: '{"name":"vm1PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","etag":"W/\"f64a7fe5-873e-4bd5-b6f4-2f56a2b3e865\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"e9463ace-90de-46b2-bf03-4841dbba192a","ipAddress":"172.190.40.38","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}'
headers:
cache-control:
- no-cache
content-length:
- - '770'
+ - '771'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:45 GMT
+ - Tue, 04 Mar 2025 02:28:03 GMT
etag:
- - W/"26603820-a2d3-469f-8ed7-404dd44b1276"
+ - W/"f64a7fe5-873e-4bd5-b6f4-2f56a2b3e865"
expires:
- '-1'
pragma:
@@ -3889,11 +4057,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 9ef26449-396b-4890-87e4-435af50dafe6
+ - 001fffb4-7366-4851-9564-cf9a0f0fcdab
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3748'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 29E95BDAA4014F469E4DC22C5DD85B7E Ref B: TYO201151001060 Ref C: 2024-08-26T09:59:45Z'
+ - 'Ref A: A79FECE6B6F848AC8C618F506E34B03E Ref B: SEL221051804033 Ref C: 2025-03-04T02:28:04Z'
status:
code: 200
message: OK
@@ -3911,23 +4079,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.70.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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-01-01
response:
body:
- string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"213c1324-447c-45cf-bb83-6a9a178551e6\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RG7N3ITVDGUKKSVRNOWOJYMHEXLC5HDUO7PNQYE7QAHAASEM5RCZC7Q7GFDWQSBEZTW/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}'
+ string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"1915fdb7-ecc5-412b-994c-b6068d1e3aee\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RG3DXGIR3VTIOBG7MCU5MLNL55OWMRQOPRH6H24BR2KC43AUIKZTNCAJ6IRH73DMQAG/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}'
headers:
cache-control:
- no-cache
content-length:
- - '750'
+ - '719'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:50 GMT
+ - Tue, 04 Mar 2025 02:28:05 GMT
etag:
- - W/"213c1324-447c-45cf-bb83-6a9a178551e6"
+ - W/"1915fdb7-ecc5-412b-994c-b6068d1e3aee"
expires:
- '-1'
pragma:
@@ -3939,11 +4107,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 6a3187d7-675d-400e-b1b8-165abd2c2ee5
+ - 9610504d-00d9-422d-b2c8-efb5463fba4c
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 9A37AA54239045499D8E64D412AA73D1 Ref B: TYO201151003052 Ref C: 2024-08-26T09:59:50Z'
+ - 'Ref A: 38083F506E5840E08A214A6CD111CC50 Ref B: SEL221051801047 Ref C: 2025-03-04T02:28:05Z'
status:
code: 200
message: OK
@@ -3968,25 +4136,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.70.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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-01-01
response:
body:
- string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"57f629cb-494b-4385-a0ee-813f0dc8fe8a\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}'
+ string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"413ce95c-0bd1-4524-84c7-8cff90a5e882\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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/eastus/operations/978914a4-f2a8-40f7-a018-be71742aa02a?api-version=2024-01-01&t=638602631918586819&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=R015HHKFZT9CmkqVJICIxkqNj4XeF5hB7rg2hd5ZYFtxxx0KDcMaYzp0OH0bdSo_jLL7PLP4A7pLIpB4V-K8gjjvFdxntFCbT-vXEO3fOGEs86fqJV-f6Cv-CtIYQ48D4Mp6pTtxeaC2ZxdhIXBJ3LiDnmd5zjn0LhnAJqZgHMrE2n3kIgpOMNRDcuXtOq7fGwH9R99iK2s9e2Eh_oKeyMQyWAnhekLbk-AE8FY2RfLBsmK5fHRI3AxtF8do1bXzxuFZcJAfR3xTL6xJOYPUIvg0JuJH_r3Vh0Igos5u_YBTMyod-zPxOC0RhQpVG4Q1bm5odeH8U_L8Uygya2bGww&h=a58L8EYNzH13cfceNE0-coTHyulI8XnSjMV-TV7vHs4
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/327e01fe-e977-4502-98d3-402e49e7390b?api-version=2024-01-01&t=638766520878287296&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=ajVNM-Q_dMWwVzRGk1BkxKkFwkz1FYsQTi3ramiRHqqwPwqfwyu48lXFImcmzl9_mS416GzERfv8Zhsv0mjGkVn_MUMYK0ilttUrzu5Knz3bWr8cEpGOdSGaaYIRhk0rHR-PVZtn7v5jkPnKUZGsMbqoKIew_eRbypvaassVSsLazDJz0bXuqBFw9usoV7MwxoRkm0l7a5Aa8C2x3WWqjT5-S73IB-RMuxxmir34lw6pfbBooPBWor_MZ3RQCZz2Ls4TKz_J6kr4nKAmUn46v4Zbz6qV06FCE47gSrSJlPcelbSoroHdUcrwwtvI9bRQSKaqzuaUYis8bl8nF-vjyA&h=pQF9WB2PMuEixcSSuRgIoI29INf0_HEQSME1sBn34AY
cache-control:
- no-cache
content-length:
- - '720'
+ - '689'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:51 GMT
+ - Tue, 04 Mar 2025 02:28:06 GMT
expires:
- '-1'
pragma:
@@ -3998,13 +4166,13 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - c1ed0ae1-6237-41cd-9814-2eeed702a9ce
+ - 585721d8-120c-4189-adae-eaa643a5ed5e
x-ms-ratelimit-remaining-subscription-global-writes:
- '2999'
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: FB194C7CC62442A79D0C749CD4815A7F Ref B: TYO201151003052 Ref C: 2024-08-26T09:59:51Z'
+ - 'Ref A: 4BC446029A9744A8BD68B672FB63643B Ref B: SEL221051801047 Ref C: 2025-03-04T02:28:06Z'
status:
code: 200
message: OK
@@ -4022,9 +4190,9 @@ 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.70.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/eastus/operations/978914a4-f2a8-40f7-a018-be71742aa02a?api-version=2024-01-01&t=638602631918586819&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=R015HHKFZT9CmkqVJICIxkqNj4XeF5hB7rg2hd5ZYFtxxx0KDcMaYzp0OH0bdSo_jLL7PLP4A7pLIpB4V-K8gjjvFdxntFCbT-vXEO3fOGEs86fqJV-f6Cv-CtIYQ48D4Mp6pTtxeaC2ZxdhIXBJ3LiDnmd5zjn0LhnAJqZgHMrE2n3kIgpOMNRDcuXtOq7fGwH9R99iK2s9e2Eh_oKeyMQyWAnhekLbk-AE8FY2RfLBsmK5fHRI3AxtF8do1bXzxuFZcJAfR3xTL6xJOYPUIvg0JuJH_r3Vh0Igos5u_YBTMyod-zPxOC0RhQpVG4Q1bm5odeH8U_L8Uygya2bGww&h=a58L8EYNzH13cfceNE0-coTHyulI8XnSjMV-TV7vHs4
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/327e01fe-e977-4502-98d3-402e49e7390b?api-version=2024-01-01&t=638766520878287296&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=ajVNM-Q_dMWwVzRGk1BkxKkFwkz1FYsQTi3ramiRHqqwPwqfwyu48lXFImcmzl9_mS416GzERfv8Zhsv0mjGkVn_MUMYK0ilttUrzu5Knz3bWr8cEpGOdSGaaYIRhk0rHR-PVZtn7v5jkPnKUZGsMbqoKIew_eRbypvaassVSsLazDJz0bXuqBFw9usoV7MwxoRkm0l7a5Aa8C2x3WWqjT5-S73IB-RMuxxmir34lw6pfbBooPBWor_MZ3RQCZz2Ls4TKz_J6kr4nKAmUn46v4Zbz6qV06FCE47gSrSJlPcelbSoroHdUcrwwtvI9bRQSKaqzuaUYis8bl8nF-vjyA&h=pQF9WB2PMuEixcSSuRgIoI29INf0_HEQSME1sBn34AY
response:
body:
string: '{"status":"Succeeded"}'
@@ -4036,7 +4204,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:51 GMT
+ - Tue, 04 Mar 2025 02:28:07 GMT
expires:
- '-1'
pragma:
@@ -4048,11 +4216,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 8a71ed4c-acfa-4587-a504-2d96c0c94f81
+ - d6ce2501-4cc1-4d81-95fc-2e38cada46b1
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3745'
x-msedge-ref:
- - 'Ref A: 11EBECA110514FAD872624AF9DC161E9 Ref B: TYO201151003052 Ref C: 2024-08-26T09:59:52Z'
+ - 'Ref A: 3066764FA33B45CCAF883C2561F3BC07 Ref B: SEL221051801047 Ref C: 2025-03-04T02:28:07Z'
status:
code: 200
message: OK
@@ -4070,23 +4238,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.70.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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-01-01
response:
body:
- string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"ee78c90f-5cba-4d7d-9c31-93b63490cdea\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RG7N3ITVDGUKKSVRNOWOJYMHEXLC5HDUO7PNQYE7QAHAASEM5RCZC7Q7GFDWQSBEZTW/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}'
+ string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"12f4d5e8-9f9f-4b85-80d8-4b6dd9b99314\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RG3DXGIR3VTIOBG7MCU5MLNL55OWMRQOPRH6H24BR2KC43AUIKZTNCAJ6IRH73DMQAG/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:
- - '780'
+ - '749'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:52 GMT
+ - Tue, 04 Mar 2025 02:28:07 GMT
etag:
- - W/"ee78c90f-5cba-4d7d-9c31-93b63490cdea"
+ - W/"12f4d5e8-9f9f-4b85-80d8-4b6dd9b99314"
expires:
- '-1'
pragma:
@@ -4098,11 +4266,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 4babbad5-29d0-4060-af26-07fdc79b6210
+ - c36e60fa-7044-45b6-b994-9973ccb43fa8
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: E0841099BEFB4444AEFAD58D63E6FBDB Ref B: TYO201151003052 Ref C: 2024-08-26T09:59:52Z'
+ - 'Ref A: 8366E53E732D40DFB8C1F81C14A79987 Ref B: SEL221051801047 Ref C: 2025-03-04T02:28:08Z'
status:
code: 200
message: OK
@@ -4120,7 +4288,53 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/clitest.rg000001?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_add_application","date":"2025-03-04T02:26:03Z","module":"vm","Creator":"zhuyan@microsoft.com","DateCreated":"2025-03-04T02:26:11Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '427'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 04 Mar 2025 02:28:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-cache:
+ - CONFIG_NOCACHE
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
+ x-msedge-ref:
+ - 'Ref A: 5CC9FBCA3727407FB686D32654F3BB15 Ref B: SEL221051503027 Ref C: 2025-03-04T02:28:09Z'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm application set
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --app-version-ids
+ User-Agent:
+ - AZURECLI/2.70.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/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-07-01
response:
@@ -4129,16 +4343,16 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"03a3ccf9-c82b-4a80-af3d-1ed9f05e0a0d\"\
+ : \"Succeeded\",\r\n \"vmId\": \"804776a9-a5e1-48fd-b352-f478f083a8fb\"\
,\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"\
publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\"\
,\r\n \"sku\": \"2022-datacenter-g2\",\r\n \"version\": \"latest\"\
- ,\r\n \"exactVersion\": \"20348.2655.240810\"\r\n },\r\n \
+ ,\r\n \"exactVersion\": \"20348.3207.250210\"\r\n },\r\n \
\ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"\
- vm1_OsDisk_1_fe934e6efb954447ada86c068211e368\",\r\n \"createOption\"\
+ vm1_OsDisk_1_e05ced0f38224579983979fb55e1b7fc\",\r\n \"createOption\"\
: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\"\
: {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_fe934e6efb954447ada86c068211e368\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e05ced0f38224579983979fb55e1b7fc\"\
\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\
: 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\"\
: \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"\
@@ -4153,7 +4367,7 @@ interactions:
\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n },\r\n \"\
networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"timeCreated\": \"\
- 2024-08-26T09:58:20.5436987+00:00\"\r\n },\r\n \"etag\": \"\\\"2\\\"\"\r\
+ 2025-03-04T02:26:40.3416647+00:00\"\r\n },\r\n \"etag\": \"\\\"2\\\"\"\r\
\n}"
headers:
cache-control:
@@ -4163,7 +4377,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:53 GMT
+ - Tue, 04 Mar 2025 02:28:10 GMT
etag:
- '"2"'
expires:
@@ -4176,32 +4390,35 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGetSubscriptionMaximum;23993,Microsoft.Compute/LowCostGetResource;32
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23990,Microsoft.Compute/LowCostGetResource;32
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: AFFDF6C4B37B42E3BCD63564C5FECD2B Ref B: TYO201100114025 Ref C: 2024-08-26T09:59:53Z'
+ - 'Ref A: 987DFD2F66A9440FBE2F7BD9FA9AAC0A Ref B: SEL221051802039 Ref C: 2025-03-04T02:28:10Z'
status:
code: 200
message: ''
- request:
- body: '{"location": "eastus", "tags": {}, "properties": {"hardwareProfile": {"vmSize":
- "Standard_DS1_v2"}, "storageProfile": {"imageReference": {"publisher": "MicrosoftWindowsServer",
- "offer": "WindowsServer", "sku": "2022-datacenter-g2", "version": "latest"},
- "osDisk": {"osType": "Windows", "name": "vm1_OsDisk_1_fe934e6efb954447ada86c068211e368",
- "caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 127, "managedDisk":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_fe934e6efb954447ada86c068211e368",
- "storageAccountType": "Premium_LRS"}, "deleteOption": "Detach"}, "dataDisks":
- [], "diskControllerType": "SCSI"}, "osProfile": {"computerName": "vm1", "adminUsername":
- "clitest1234", "windowsConfiguration": {"provisionVMAgent": true, "enableAutomaticUpdates":
- true, "patchSettings": {"patchMode": "AutomaticByOS", "assessmentMode": "ImageDefault"}},
- "secrets": [], "allowExtensionOperations": true, "requireGuestProvisionSignal":
- true}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"}]},
- "securityProfile": {"uefiSettings": {"secureBootEnabled": true, "vTpmEnabled":
- true}, "securityType": "TrustedLaunch"}, "licenseType": "Windows_Server", "applicationProfile":
- {"galleryApplications": [{"packageReferenceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MyFirstApp/versions/1.0.0"},
- {"packageReferenceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MySecondApp/versions/1.0.1"}]}}}'
+ body: '{"location": "eastus", "properties": {"applicationProfile": {"galleryApplications":
+ [{"packageReferenceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MyFirstApp/versions/1.0.0"},
+ {"packageReferenceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MySecondApp/versions/1.0.1"}]},
+ "hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "licenseType": "Windows_Server",
+ "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"}]},
+ "osProfile": {"adminUsername": "clitest1234", "allowExtensionOperations": true,
+ "computerName": "vm1", "requireGuestProvisionSignal": true, "secrets": [], "windowsConfiguration":
+ {"enableAutomaticUpdates": true, "patchSettings": {"assessmentMode": "ImageDefault",
+ "patchMode": "AutomaticByOS"}, "provisionVMAgent": true}}, "securityProfile":
+ {"securityType": "TrustedLaunch", "uefiSettings": {"secureBootEnabled": true,
+ "vTpmEnabled": true}}, "storageProfile": {"dataDisks": [], "diskControllerType":
+ "SCSI", "imageReference": {"offer": "WindowsServer", "publisher": "MicrosoftWindowsServer",
+ "sku": "2022-datacenter-g2", "version": "latest"}, "osDisk": {"caching": "ReadWrite",
+ "createOption": "FromImage", "deleteOption": "Detach", "diskSizeGB": 127, "managedDisk":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e05ced0f38224579983979fb55e1b7fc",
+ "storageAccountType": "Premium_LRS"}, "name": "vm1_OsDisk_1_e05ced0f38224579983979fb55e1b7fc",
+ "osType": "Windows"}}}, "tags": {}}'
headers:
Accept:
- application/json
@@ -4218,7 +4435,7 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-07-01
response:
@@ -4227,7 +4444,7 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"vmId\": \"03a3ccf9-c82b-4a80-af3d-1ed9f05e0a0d\"\
+ : \"Updating\",\r\n \"vmId\": \"804776a9-a5e1-48fd-b352-f478f083a8fb\"\
,\r\n \"applicationProfile\": {\r\n \"galleryApplications\": [\r\n\
\ {\r\n \"manuallyManaged\": false,\r\n \"packageReferenceId\"\
: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MyFirstApp/versions/1.0.0\"\
@@ -4239,12 +4456,12 @@ interactions:
storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\"\
: \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n\
\ \"sku\": \"2022-datacenter-g2\",\r\n \"version\": \"latest\"\
- ,\r\n \"exactVersion\": \"20348.2655.240810\"\r\n },\r\n \
+ ,\r\n \"exactVersion\": \"20348.3207.250210\"\r\n },\r\n \
\ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"\
- vm1_OsDisk_1_fe934e6efb954447ada86c068211e368\",\r\n \"createOption\"\
+ vm1_OsDisk_1_e05ced0f38224579983979fb55e1b7fc\",\r\n \"createOption\"\
: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\"\
: {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_fe934e6efb954447ada86c068211e368\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e05ced0f38224579983979fb55e1b7fc\"\
\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\
: 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\"\
: \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"\
@@ -4259,7 +4476,7 @@ interactions:
\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n },\r\n \"\
networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"timeCreated\": \"\
- 2024-08-26T09:58:20.5436987+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\",\r\
+ 2025-03-04T02:26:40.3416647+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\",\r\
\n \"resources\": [\r\n {\r\n \"name\": \"VMAppExtension\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/extensions/VMAppExtension\"\
,\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n\
@@ -4272,7 +4489,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1d31fa97-9306-4cc3-b4ce-c2de2c892d36?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631960098371&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=EermMbfWqXLs8BMHkBDupjpluj1uHu4ISE8oepyIDe4En_fzRdDAb8ypGwun-NG2_fj1eo3IVpPrhBqWL7oduHpQvJGkjBzPTUqWFlxUPn10Md5LR-Fkp9KWkCLre_W6ZqbtDdkPw7anS7WL8Q2ryz7daHPqRqdO8YvUs89PdK5Xnfv5ajWcM48JVM1QpIe9-lmz9a0PeB8dskS62RRBZDQYkf10tl3IVH5_BQhKk75OyQi75Q4mRJXJDiks0xg3qXmBg4Jryudj5M28b_weMF7xE-js1vYQJUbxGKOvLXDnAjTeSe4eUhhuEho3itgOolVaoMJVJPRcAVlsOTxkVw&h=f23cXJzondoV5xrFjdBlhXGx-NVDckqrOPl0J51-i1Q
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/11514817-7cf0-4622-9564-5abb91595e73?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638766520937216270&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=eoEZAyhN0a-zEYBvTHKPb2ooUeP5nu3bAdjSF-YOLjHHGvkNtWezacFG7R4ck2PTwaYS8_iRQmVDANiZ32NQT6Ne8BOulinaL-NYkgH7skYlE9lrQDy9bcK5v8Rax23vT7FS-4z2bGOD9SychZ62c72KsdJtiFd7HoD3WwE7BdacoJ8HKxnYzuUlHBOcW8LumsUhEErwmQvKxNBmerNIWtLkZ61m7XwDENO8pW6Pc9PbM1tB0GNBwBvjE022wL8rJf5oXw1LT8KR6YiOcRIiKjPq5W9cBFX4cSvMQ4oDp7UXXDPvBMYqOkrnsWfOj2K74cmLPNNQuqCcUkHVT82fUA&h=Paip9wfgcRY_iHtkARL5s_XiR-Qk-8B3YDIAo5MRg-0
cache-control:
- no-cache
content-length:
@@ -4280,7 +4497,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:55 GMT
+ - Tue, 04 Mar 2025 02:28:13 GMT
etag:
- '"3"'
expires:
@@ -4293,6 +4510,8 @@ 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:
@@ -4300,7 +4519,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: 4F193522A82147B182BE55B6A8283FD5 Ref B: TYO201100114025 Ref C: 2024-08-26T09:59:53Z'
+ - 'Ref A: BE959389AF52490DAF36F44497C753DB Ref B: SEL221051802039 Ref C: 2025-03-04T02:28:11Z'
status:
code: 200
message: ''
@@ -4318,13 +4537,13 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/eastus/operations/1d31fa97-9306-4cc3-b4ce-c2de2c892d36?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631960098371&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=EermMbfWqXLs8BMHkBDupjpluj1uHu4ISE8oepyIDe4En_fzRdDAb8ypGwun-NG2_fj1eo3IVpPrhBqWL7oduHpQvJGkjBzPTUqWFlxUPn10Md5LR-Fkp9KWkCLre_W6ZqbtDdkPw7anS7WL8Q2ryz7daHPqRqdO8YvUs89PdK5Xnfv5ajWcM48JVM1QpIe9-lmz9a0PeB8dskS62RRBZDQYkf10tl3IVH5_BQhKk75OyQi75Q4mRJXJDiks0xg3qXmBg4Jryudj5M28b_weMF7xE-js1vYQJUbxGKOvLXDnAjTeSe4eUhhuEho3itgOolVaoMJVJPRcAVlsOTxkVw&h=f23cXJzondoV5xrFjdBlhXGx-NVDckqrOPl0J51-i1Q
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/11514817-7cf0-4622-9564-5abb91595e73?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638766520937216270&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=eoEZAyhN0a-zEYBvTHKPb2ooUeP5nu3bAdjSF-YOLjHHGvkNtWezacFG7R4ck2PTwaYS8_iRQmVDANiZ32NQT6Ne8BOulinaL-NYkgH7skYlE9lrQDy9bcK5v8Rax23vT7FS-4z2bGOD9SychZ62c72KsdJtiFd7HoD3WwE7BdacoJ8HKxnYzuUlHBOcW8LumsUhEErwmQvKxNBmerNIWtLkZ61m7XwDENO8pW6Pc9PbM1tB0GNBwBvjE022wL8rJf5oXw1LT8KR6YiOcRIiKjPq5W9cBFX4cSvMQ4oDp7UXXDPvBMYqOkrnsWfOj2K74cmLPNNQuqCcUkHVT82fUA&h=Paip9wfgcRY_iHtkARL5s_XiR-Qk-8B3YDIAo5MRg-0
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:59:55.6536603+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"1d31fa97-9306-4cc3-b4ce-c2de2c892d36\"\
+ string: "{\r\n \"startTime\": \"2025-03-04T02:28:13.0293309+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"11514817-7cf0-4622-9564-5abb91595e73\"\
\r\n}"
headers:
cache-control:
@@ -4334,7 +4553,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:56 GMT
+ - Tue, 04 Mar 2025 02:28:13 GMT
expires:
- '-1'
pragma:
@@ -4345,12 +4564,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;14966
+ - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14993
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 1F6C2396CD564903B3F4CA064160D10B Ref B: TYO201100114025 Ref C: 2024-08-26T09:59:56Z'
+ - 'Ref A: 572B02D36275461DB594E4FD2F420583 Ref B: SEL221051802039 Ref C: 2025-03-04T02:28:13Z'
status:
code: 200
message: ''
@@ -4368,13 +4589,13 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/eastus/operations/1d31fa97-9306-4cc3-b4ce-c2de2c892d36?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631960098371&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=EermMbfWqXLs8BMHkBDupjpluj1uHu4ISE8oepyIDe4En_fzRdDAb8ypGwun-NG2_fj1eo3IVpPrhBqWL7oduHpQvJGkjBzPTUqWFlxUPn10Md5LR-Fkp9KWkCLre_W6ZqbtDdkPw7anS7WL8Q2ryz7daHPqRqdO8YvUs89PdK5Xnfv5ajWcM48JVM1QpIe9-lmz9a0PeB8dskS62RRBZDQYkf10tl3IVH5_BQhKk75OyQi75Q4mRJXJDiks0xg3qXmBg4Jryudj5M28b_weMF7xE-js1vYQJUbxGKOvLXDnAjTeSe4eUhhuEho3itgOolVaoMJVJPRcAVlsOTxkVw&h=f23cXJzondoV5xrFjdBlhXGx-NVDckqrOPl0J51-i1Q
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/11514817-7cf0-4622-9564-5abb91595e73?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638766520937216270&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=eoEZAyhN0a-zEYBvTHKPb2ooUeP5nu3bAdjSF-YOLjHHGvkNtWezacFG7R4ck2PTwaYS8_iRQmVDANiZ32NQT6Ne8BOulinaL-NYkgH7skYlE9lrQDy9bcK5v8Rax23vT7FS-4z2bGOD9SychZ62c72KsdJtiFd7HoD3WwE7BdacoJ8HKxnYzuUlHBOcW8LumsUhEErwmQvKxNBmerNIWtLkZ61m7XwDENO8pW6Pc9PbM1tB0GNBwBvjE022wL8rJf5oXw1LT8KR6YiOcRIiKjPq5W9cBFX4cSvMQ4oDp7UXXDPvBMYqOkrnsWfOj2K74cmLPNNQuqCcUkHVT82fUA&h=Paip9wfgcRY_iHtkARL5s_XiR-Qk-8B3YDIAo5MRg-0
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:59:55.6536603+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"1d31fa97-9306-4cc3-b4ce-c2de2c892d36\"\
+ string: "{\r\n \"startTime\": \"2025-03-04T02:28:13.0293309+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"11514817-7cf0-4622-9564-5abb91595e73\"\
\r\n}"
headers:
cache-control:
@@ -4384,7 +4605,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:00:26 GMT
+ - Tue, 04 Mar 2025 02:28:44 GMT
expires:
- '-1'
pragma:
@@ -4395,12 +4616,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;14979
+ - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14990
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: B56A61E26EFF400F8627D1DCD51D343A Ref B: TYO201100114025 Ref C: 2024-08-26T10:00:26Z'
+ - 'Ref A: 4B95334026954C4B88BC18EC7679F6C6 Ref B: SEL221051802039 Ref C: 2025-03-04T02:28:44Z'
status:
code: 200
message: ''
@@ -4418,13 +4641,13 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/eastus/operations/1d31fa97-9306-4cc3-b4ce-c2de2c892d36?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631960098371&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=EermMbfWqXLs8BMHkBDupjpluj1uHu4ISE8oepyIDe4En_fzRdDAb8ypGwun-NG2_fj1eo3IVpPrhBqWL7oduHpQvJGkjBzPTUqWFlxUPn10Md5LR-Fkp9KWkCLre_W6ZqbtDdkPw7anS7WL8Q2ryz7daHPqRqdO8YvUs89PdK5Xnfv5ajWcM48JVM1QpIe9-lmz9a0PeB8dskS62RRBZDQYkf10tl3IVH5_BQhKk75OyQi75Q4mRJXJDiks0xg3qXmBg4Jryudj5M28b_weMF7xE-js1vYQJUbxGKOvLXDnAjTeSe4eUhhuEho3itgOolVaoMJVJPRcAVlsOTxkVw&h=f23cXJzondoV5xrFjdBlhXGx-NVDckqrOPl0J51-i1Q
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/11514817-7cf0-4622-9564-5abb91595e73?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638766520937216270&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=eoEZAyhN0a-zEYBvTHKPb2ooUeP5nu3bAdjSF-YOLjHHGvkNtWezacFG7R4ck2PTwaYS8_iRQmVDANiZ32NQT6Ne8BOulinaL-NYkgH7skYlE9lrQDy9bcK5v8Rax23vT7FS-4z2bGOD9SychZ62c72KsdJtiFd7HoD3WwE7BdacoJ8HKxnYzuUlHBOcW8LumsUhEErwmQvKxNBmerNIWtLkZ61m7XwDENO8pW6Pc9PbM1tB0GNBwBvjE022wL8rJf5oXw1LT8KR6YiOcRIiKjPq5W9cBFX4cSvMQ4oDp7UXXDPvBMYqOkrnsWfOj2K74cmLPNNQuqCcUkHVT82fUA&h=Paip9wfgcRY_iHtkARL5s_XiR-Qk-8B3YDIAo5MRg-0
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:59:55.6536603+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"1d31fa97-9306-4cc3-b4ce-c2de2c892d36\"\
+ string: "{\r\n \"startTime\": \"2025-03-04T02:28:13.0293309+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"11514817-7cf0-4622-9564-5abb91595e73\"\
\r\n}"
headers:
cache-control:
@@ -4434,7 +4657,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:00:56 GMT
+ - Tue, 04 Mar 2025 02:29:14 GMT
expires:
- '-1'
pragma:
@@ -4445,12 +4668,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;14962
+ - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14997
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3748'
x-msedge-ref:
- - 'Ref A: FF4A47F03D7E4EC7A8751F89995B6163 Ref B: TYO201100114025 Ref C: 2024-08-26T10:00:56Z'
+ - 'Ref A: 1F248FF43EFB470DB3A484BA1851B08D Ref B: SEL221051802039 Ref C: 2025-03-04T02:29:14Z'
status:
code: 200
message: ''
@@ -4468,14 +4693,14 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/eastus/operations/1d31fa97-9306-4cc3-b4ce-c2de2c892d36?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631960098371&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=EermMbfWqXLs8BMHkBDupjpluj1uHu4ISE8oepyIDe4En_fzRdDAb8ypGwun-NG2_fj1eo3IVpPrhBqWL7oduHpQvJGkjBzPTUqWFlxUPn10Md5LR-Fkp9KWkCLre_W6ZqbtDdkPw7anS7WL8Q2ryz7daHPqRqdO8YvUs89PdK5Xnfv5ajWcM48JVM1QpIe9-lmz9a0PeB8dskS62RRBZDQYkf10tl3IVH5_BQhKk75OyQi75Q4mRJXJDiks0xg3qXmBg4Jryudj5M28b_weMF7xE-js1vYQJUbxGKOvLXDnAjTeSe4eUhhuEho3itgOolVaoMJVJPRcAVlsOTxkVw&h=f23cXJzondoV5xrFjdBlhXGx-NVDckqrOPl0J51-i1Q
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/11514817-7cf0-4622-9564-5abb91595e73?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638766520937216270&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=eoEZAyhN0a-zEYBvTHKPb2ooUeP5nu3bAdjSF-YOLjHHGvkNtWezacFG7R4ck2PTwaYS8_iRQmVDANiZ32NQT6Ne8BOulinaL-NYkgH7skYlE9lrQDy9bcK5v8Rax23vT7FS-4z2bGOD9SychZ62c72KsdJtiFd7HoD3WwE7BdacoJ8HKxnYzuUlHBOcW8LumsUhEErwmQvKxNBmerNIWtLkZ61m7XwDENO8pW6Pc9PbM1tB0GNBwBvjE022wL8rJf5oXw1LT8KR6YiOcRIiKjPq5W9cBFX4cSvMQ4oDp7UXXDPvBMYqOkrnsWfOj2K74cmLPNNQuqCcUkHVT82fUA&h=Paip9wfgcRY_iHtkARL5s_XiR-Qk-8B3YDIAo5MRg-0
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:59:55.6536603+00:00\",\r\n \"\
- endTime\": \"2024-08-26T10:01:12.0603584+00:00\",\r\n \"status\": \"Succeeded\"\
- ,\r\n \"name\": \"1d31fa97-9306-4cc3-b4ce-c2de2c892d36\"\r\n}"
+ string: "{\r\n \"startTime\": \"2025-03-04T02:28:13.0293309+00:00\",\r\n \"\
+ endTime\": \"2025-03-04T02:29:39.3263765+00:00\",\r\n \"status\": \"Succeeded\"\
+ ,\r\n \"name\": \"11514817-7cf0-4622-9564-5abb91595e73\"\r\n}"
headers:
cache-control:
- no-cache
@@ -4484,7 +4709,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:01:27 GMT
+ - Tue, 04 Mar 2025 02:29:44 GMT
expires:
- '-1'
pragma:
@@ -4495,12 +4720,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;14992
+ - Microsoft.Compute/GetOperationResource;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14994
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 9CAEBE2C412F44EDA2483C4F5DE17ED0 Ref B: TYO201100114025 Ref C: 2024-08-26T10:01:27Z'
+ - 'Ref A: 190E13B447E04B658AC8C91317A9569D Ref B: SEL221051802039 Ref C: 2025-03-04T02:29:45Z'
status:
code: 200
message: ''
@@ -4518,7 +4745,7 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-07-01
response:
@@ -4527,7 +4754,7 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"03a3ccf9-c82b-4a80-af3d-1ed9f05e0a0d\"\
+ : \"Succeeded\",\r\n \"vmId\": \"804776a9-a5e1-48fd-b352-f478f083a8fb\"\
,\r\n \"applicationProfile\": {\r\n \"galleryApplications\": [\r\n\
\ {\r\n \"manuallyManaged\": false,\r\n \"packageReferenceId\"\
: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MyFirstApp/versions/1.0.0\"\
@@ -4539,12 +4766,12 @@ interactions:
storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\"\
: \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n\
\ \"sku\": \"2022-datacenter-g2\",\r\n \"version\": \"latest\"\
- ,\r\n \"exactVersion\": \"20348.2655.240810\"\r\n },\r\n \
+ ,\r\n \"exactVersion\": \"20348.3207.250210\"\r\n },\r\n \
\ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"\
- vm1_OsDisk_1_fe934e6efb954447ada86c068211e368\",\r\n \"createOption\"\
+ vm1_OsDisk_1_e05ced0f38224579983979fb55e1b7fc\",\r\n \"createOption\"\
: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\"\
: {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_fe934e6efb954447ada86c068211e368\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e05ced0f38224579983979fb55e1b7fc\"\
\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\
: 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\"\
: \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"\
@@ -4559,7 +4786,7 @@ interactions:
\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n },\r\n \"\
networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"timeCreated\": \"\
- 2024-08-26T09:58:20.5436987+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\",\r\
+ 2025-03-04T02:26:40.3416647+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\",\r\
\n \"resources\": [\r\n {\r\n \"name\": \"VMAppExtension\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/extensions/VMAppExtension\"\
,\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n\
@@ -4576,7 +4803,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:01:27 GMT
+ - Tue, 04 Mar 2025 02:29:45 GMT
etag:
- '"3"'
expires:
@@ -4589,12 +4816,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;23969,Microsoft.Compute/LowCostGetResource;35
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;35
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 499B1C4ED54F47A483E15BD04C507406 Ref B: TYO201100114025 Ref C: 2024-08-26T10:01:27Z'
+ - 'Ref A: 75108042D72349A6956DC8CA557AD37A Ref B: SEL221051802039 Ref C: 2025-03-04T02:29:45Z'
status:
code: 200
message: ''
@@ -4612,7 +4841,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.70.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/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-07-01
response:
@@ -4621,7 +4850,7 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"03a3ccf9-c82b-4a80-af3d-1ed9f05e0a0d\"\
+ : \"Succeeded\",\r\n \"vmId\": \"804776a9-a5e1-48fd-b352-f478f083a8fb\"\
,\r\n \"applicationProfile\": {\r\n \"galleryApplications\": [\r\n\
\ {\r\n \"manuallyManaged\": false,\r\n \"packageReferenceId\"\
: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MyFirstApp/versions/1.0.0\"\
@@ -4633,12 +4862,12 @@ interactions:
storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\"\
: \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n\
\ \"sku\": \"2022-datacenter-g2\",\r\n \"version\": \"latest\"\
- ,\r\n \"exactVersion\": \"20348.2655.240810\"\r\n },\r\n \
+ ,\r\n \"exactVersion\": \"20348.3207.250210\"\r\n },\r\n \
\ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"\
- vm1_OsDisk_1_fe934e6efb954447ada86c068211e368\",\r\n \"createOption\"\
+ vm1_OsDisk_1_e05ced0f38224579983979fb55e1b7fc\",\r\n \"createOption\"\
: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\"\
: {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_fe934e6efb954447ada86c068211e368\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_e05ced0f38224579983979fb55e1b7fc\"\
\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\
: 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\"\
: \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"\
@@ -4653,7 +4882,7 @@ interactions:
\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n },\r\n \"\
networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"timeCreated\": \"\
- 2024-08-26T09:58:20.5436987+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\",\r\
+ 2025-03-04T02:26:40.3416647+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\",\r\
\n \"resources\": [\r\n {\r\n \"name\": \"VMAppExtension\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/extensions/VMAppExtension\"\
,\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n\
@@ -4670,7 +4899,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:01:29 GMT
+ - Tue, 04 Mar 2025 02:29:46 GMT
etag:
- '"3"'
expires:
@@ -4683,12 +4912,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;23968,Microsoft.Compute/LowCostGetResource;34
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23998,Microsoft.Compute/LowCostGetResource;34
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 6A7ED37B9F1249DCA25F784AE4AEEA1B Ref B: TYO201151005025 Ref C: 2024-08-26T10:01:28Z'
+ - 'Ref A: 3A4C3F4B2EAB4EBAB7DAABE43E7DE180 Ref B: SEL221051803045 Ref C: 2025-03-04T02:29:46Z'
status:
code: 200
message: ''
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_add_application_empty_version_ids.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_add_application_empty_version_ids.yaml
index 7c15e299039..8cf68b5b645 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_add_application_empty_version_ids.yaml
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_add_application_empty_version_ids.yaml
@@ -18,28 +18,34 @@ interactions:
,\n \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\"\
: {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"\
type\": \"object\",\n \"value\": {\n \"Linux\": {\n \"\
- CentOS85Gen2\": {\n \"publisher\": \"OpenLogic\",\n \
- \ \"offer\": \"CentOS\",\n \"sku\": \"8_5-gen2\",\n \
- \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \
- \ },\n \"Debian11\": {\n \"publisher\": \"Debian\"\
- ,\n \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\"\
- ,\n \"version\": \"latest\",\n \"architecture\": \"\
- x64\"\n },\n \"FlatcarLinuxFreeGen2\": {\n \"\
- publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\"\
- ,\n \"sku\": \"stable-gen2\",\n \"version\": \"latest\"\
- ,\n \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\"\
- : {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\"\
- ,\n \"sku\": \"gen2\",\n \"version\": \"latest\",\n\
- \ \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\"\
- : {\n \"publisher\": \"RedHat\",\n \"offer\": \"\
- RHEL\",\n \"sku\": \"8-lvm-gen2\",\n \"version\": \
- \ \"latest\",\n \"architecture\": \"x64\"\n },\n \
- \ \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n \
- \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \
- \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \
- \ },\n \"Ubuntu2204\": {\n \"publisher\": \"\
- Canonical\",\n \"offer\": \"0001-com-ubuntu-server-jammy\",\n\
- \ \"sku\": \"22_04-lts-gen2\",\n \"version\": \"latest\"\
+ CentOS85Gen2\": {\n \"publisher\": \"OpenLogic\",\n \
+ \ \"offer\": \"CentOS\",\n \"sku\": \"8_5-gen2\",\n \
+ \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \
+ \ },\n \"Debian11\": {\n \"publisher\": \"Debian\"\
+ ,\n \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\"\
+ ,\n \"version\": \"latest\",\n \"architecture\": \"\
+ x64\"\n },\n \"OpenSuseLeap154Gen2\": {\n \"\
+ publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n \
+ \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \
+ \ \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\"\
+ : {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\"\
+ ,\n \"sku\": \"8-lvm-gen2\",\n \"version\": \"latest\"\
+ ,\n \"architecture\": \"x64\"\n },\n \"SuseSles15SP5\"\
+ : {\n \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp5\"\
+ ,\n \"sku\": \"gen2\",\n \"version\": \"latest\",\n\
+ \ \"architecture\": \"x64\"\n },\n \"Ubuntu2204\"\
+ : {\n \"publisher\": \"Canonical\",\n \"offer\": \"\
+ 0001-com-ubuntu-server-jammy\",\n \"sku\": \"22_04-lts-gen2\",\n\
+ \ \"version\": \"latest\",\n \"architecture\": \"x64\"\
+ \n },\n \"Ubuntu2404\": {\n \"publisher\": \"\
+ Canonical\",\n \"offer\": \"ubuntu-24_04-lts\",\n \"\
+ sku\": \"server\",\n \"version\": \"latest\",\n \"architecture\"\
+ : \"x64\"\n },\n \"Ubuntu2404Pro\": {\n \"publisher\"\
+ : \"Canonical\",\n \"offer\": \"ubuntu-24_04-lts\",\n \
+ \ \"sku\": \"ubuntu-pro\",\n \"version\": \"latest\",\n \
+ \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\"\
+ : {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\"\
+ ,\n \"sku\": \"stable-gen2\",\n \"version\": \"latest\"\
,\n \"architecture\": \"x64\"\n }\n },\n \
\ \"Windows\": {\n \"Win2022Datacenter\": {\n \"publisher\"\
: \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n\
@@ -73,7 +79,7 @@ interactions:
connection:
- keep-alive
content-length:
- - '3384'
+ - '3790'
content-security-policy:
- default-src 'none'; style-src 'unsafe-inline'; sandbox
content-type:
@@ -81,13 +87,13 @@ interactions:
cross-origin-resource-policy:
- cross-origin
date:
- - Mon, 26 Aug 2024 09:56:22 GMT
+ - Tue, 04 Mar 2025 03:06:56 GMT
etag:
- - W/"8f34071e3f10c641931f33307d1319d34bae37f557ea31022a455502dae9ebc2"
+ - W/"0f53b56eda413b90fc6365dd4848831171968adfbf5b440c8da07b5866a97d67"
expires:
- - Mon, 26 Aug 2024 10:01:22 GMT
+ - Tue, 04 Mar 2025 03:11:56 GMT
source-age:
- - '96'
+ - '206'
strict-transport-security:
- max-age=31536000
vary:
@@ -101,15 +107,15 @@ interactions:
x-content-type-options:
- nosniff
x-fastly-request-id:
- - 50a87c1364c6715cef1b2bcc362db64d412efd97
+ - 1307ea0c8845dac1c14e23da9889238709ddd6d9
x-frame-options:
- deny
x-github-request-id:
- - 8060:3C8180:13D484:1818B3:66CC1340
+ - C72E:7AC17:334F663:3AA2722:67C62776
x-served-by:
- - cache-tyo11978-TYO
+ - cache-sin-wsss1830078-SIN
x-timer:
- - S1724666182.487784,VS0,VE1
+ - S1741057617.634608,VS0,VE1
x-xss-protection:
- 1; mode=block
status:
@@ -130,13 +136,13 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions?$top=1&$orderby=name%20desc&api-version=2024-07-01
response:
body:
- string: "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\"\
- ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\
+ string: "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\"\
+ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\
\r\n }\r\n]"
headers:
cache-control:
@@ -146,7 +152,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:56:22 GMT
+ - Tue, 04 Mar 2025 03:06:56 GMT
expires:
- '-1'
pragma:
@@ -162,7 +168,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 837F468521F94899BE5D22FDD1DE17D5 Ref B: TYO201151006031 Ref C: 2024-08-26T09:56:22Z'
+ - 'Ref A: 0F5C268ACDD54068BD0E382B6E9E8ACE Ref B: SEL221051803051 Ref C: 2025-03-04T03:06:56Z'
status:
code: 200
message: OK
@@ -181,9 +187,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2655.240810?api-version=2024-07-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.3207.250210?api-version=2024-07-01
response:
body:
string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \
@@ -199,19 +205,19 @@ interactions:
,\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"\
name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n \
\ }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\
- ,\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n \
- \ },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\
- \n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\
+ ,\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n\
+ \ \"goLiveDate\": \"2025-02-13T00:00:00+00:00\"\r\n },\r\n \"location\"\
+ : \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\
\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1184'
+ - '1232'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:56:23 GMT
+ - Tue, 04 Mar 2025 03:06:57 GMT
expires:
- '-1'
pragma:
@@ -227,7 +233,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 213A01A1962241F48138879E5558E9B6 Ref B: TYO201100113017 Ref C: 2024-08-26T09:56:23Z'
+ - 'Ref A: 6FD64616B06147CCB96D80053A399CB3 Ref B: SEL221051802023 Ref C: 2025-03-04T03:06:57Z'
status:
code: 200
message: OK
@@ -246,12 +252,12 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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
@@ -259,8 +265,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
@@ -268,8 +275,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
@@ -277,8 +285,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
@@ -286,8 +295,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
@@ -295,32 +305,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
@@ -335,13 +398,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
@@ -351,7 +414,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -361,7 +424,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -371,7 +434,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -380,20 +443,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
@@ -403,7 +466,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -413,7 +476,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -422,7 +485,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -431,7 +494,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -440,7 +503,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -449,7 +512,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -458,7 +521,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -467,7 +530,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -477,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"],"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
@@ -486,7 +549,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -495,8 +558,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
@@ -505,8 +568,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
@@ -515,8 +578,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
@@ -525,8 +588,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
@@ -536,7 +599,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -546,7 +609,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -555,7 +618,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
@@ -565,7 +628,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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
@@ -575,7 +638,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
@@ -584,15 +647,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
@@ -601,7 +664,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -610,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"],"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
@@ -620,16 +683,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
@@ -638,8 +701,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
@@ -648,14 +711,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
@@ -665,7 +729,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US 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
@@ -675,9 +739,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-09-01-preview","2024-07-01","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-09-01-preview","2024-07-01","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":"networkSecurityPerimeters","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
@@ -687,8 +751,20 @@ 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":["2024-07-01","2024-06-01-preview","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":"2024-07-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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
+ South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland
+ West","East Asia","South Africa North","UK South","South India","Australia
+ Southeast","France South","West US 2","Sweden Central","Japan West","Norway
+ 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","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-06-01-preview","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
@@ -698,8 +774,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":["2024-07-01","2024-06-01-preview","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
@@ -709,8 +785,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-09-01-preview","2024-07-01","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
@@ -720,8 +796,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-09-01-preview","2024-07-01","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
@@ -731,8 +807,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
@@ -742,8 +818,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-09-01-preview","2024-07-01","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
@@ -753,17 +829,34 @@ 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-09-01-preview","2024-07-01","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","West Central US","East US 2 EUAP","Central
+ US EUAP"],"apiVersions":["2024-07-01","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","West Central US","East US 2 EUAP","Central
+ US EUAP"],"apiVersions":["2024-07-01","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-07-01","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-07-01","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
@@ -773,8 +866,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":["2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-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
@@ -782,7 +875,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-07-01","2024-05-01","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
@@ -790,7 +883,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-07-01","2024-05-01","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
@@ -800,8 +893,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-07-01","2024-05-01","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
@@ -812,8 +905,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-07-01","2024-05-01","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-07-01","2024-05-01","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-07-01","2024-05-01","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-07-01","2024-05-01","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
@@ -823,8 +917,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-07-01","2024-05-01","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
@@ -835,11 +929,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-07-01","2024-05-01","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-07-01","2024-05-01","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
@@ -849,13 +943,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
@@ -865,7 +959,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -874,7 +968,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -883,14 +977,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
@@ -900,7 +995,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -909,20 +1004,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
@@ -932,7 +1027,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -941,7 +1036,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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
@@ -950,20 +1045,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
@@ -973,13 +1068,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
@@ -989,7 +1084,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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
@@ -999,13 +1094,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
@@ -1015,7 +1110,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
@@ -1023,8 +1118,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
@@ -1033,14 +1128,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
@@ -1050,7 +1145,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1060,7 +1155,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1070,7 +1165,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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
@@ -1080,7 +1175,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1090,7 +1185,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1100,7 +1195,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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
@@ -1109,20 +1204,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
@@ -1132,7 +1227,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1142,7 +1237,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1152,7 +1247,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1162,8 +1257,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
@@ -1172,7 +1267,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1181,7 +1276,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1190,7 +1285,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1199,7 +1294,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","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
@@ -1208,7 +1303,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","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
@@ -1217,7 +1312,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1226,7 +1321,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1235,7 +1330,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1244,7 +1339,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
@@ -1253,7 +1348,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
@@ -1262,7 +1357,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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
@@ -1271,7 +1366,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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
@@ -1280,7 +1375,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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
@@ -1289,7 +1384,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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
@@ -1298,7 +1393,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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
@@ -1307,7 +1402,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1316,7 +1411,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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
@@ -1325,7 +1420,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -1334,7 +1429,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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
@@ -1343,7 +1438,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1352,7 +1447,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1361,7 +1456,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1370,7 +1465,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1379,7 +1474,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1388,7 +1483,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -1398,13 +1493,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
@@ -1414,7 +1509,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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
@@ -1423,7 +1518,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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
@@ -1432,8 +1527,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
@@ -1443,7 +1538,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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
@@ -1452,7 +1547,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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
@@ -1462,7 +1557,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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
@@ -1471,7 +1566,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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
@@ -1480,7 +1575,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -1489,7 +1584,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -1498,7 +1593,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -1507,7 +1602,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -1516,7 +1611,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -1540,31 +1635,19 @@ 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,
- 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
- 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
- North","Germany West Central","Switzerland West","East Asia","South Africa
- North","UK South","South India","Australia Southeast","France South","West
- US 2","Sweden Central","Japan West","Norway 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"],"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 STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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":"networkWatchers/lenses","locations":["Central
+ US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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'
+ - '205778'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:56:25 GMT
+ - Tue, 04 Mar 2025 03:06:59 GMT
expires:
- '-1'
pragma:
@@ -1578,7 +1661,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 6C5D1464268E4D20BB3740023884261F Ref B: TYO201151003034 Ref C: 2024-08-26T09:56:24Z'
+ - 'Ref A: F62C8FA71D75481A84B6B93C13B141F6 Ref B: SEL221051503019 Ref C: 2025-03-04T03:06:58Z'
status:
code: 200
message: OK
@@ -1597,9 +1680,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/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''
@@ -1613,7 +1696,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:56:26 GMT
+ - Tue, 04 Mar 2025 03:07:00 GMT
expires:
- '-1'
pragma:
@@ -1627,7 +1710,7 @@ interactions:
x-ms-failure-cause:
- gateway
x-msedge-ref:
- - 'Ref A: 4596E7A9935F4D3FA6DD85AFD4D775BE Ref B: TYO201100113021 Ref C: 2024-08-26T09:56:26Z'
+ - 'Ref A: 50829C4D5A0341FAAF7C3843FDB858D7 Ref B: SEL221051503017 Ref C: 2025-03-04T03:07:00Z'
status:
code: 404
message: Not Found
@@ -1650,28 +1733,34 @@ interactions:
,\n \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\"\
: {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"\
type\": \"object\",\n \"value\": {\n \"Linux\": {\n \"\
- CentOS85Gen2\": {\n \"publisher\": \"OpenLogic\",\n \
- \ \"offer\": \"CentOS\",\n \"sku\": \"8_5-gen2\",\n \
- \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \
- \ },\n \"Debian11\": {\n \"publisher\": \"Debian\"\
- ,\n \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\"\
- ,\n \"version\": \"latest\",\n \"architecture\": \"\
- x64\"\n },\n \"FlatcarLinuxFreeGen2\": {\n \"\
- publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\"\
- ,\n \"sku\": \"stable-gen2\",\n \"version\": \"latest\"\
- ,\n \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\"\
- : {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\"\
- ,\n \"sku\": \"gen2\",\n \"version\": \"latest\",\n\
- \ \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\"\
- : {\n \"publisher\": \"RedHat\",\n \"offer\": \"\
- RHEL\",\n \"sku\": \"8-lvm-gen2\",\n \"version\": \
- \ \"latest\",\n \"architecture\": \"x64\"\n },\n \
- \ \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n \
- \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \
- \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \
- \ },\n \"Ubuntu2204\": {\n \"publisher\": \"\
- Canonical\",\n \"offer\": \"0001-com-ubuntu-server-jammy\",\n\
- \ \"sku\": \"22_04-lts-gen2\",\n \"version\": \"latest\"\
+ CentOS85Gen2\": {\n \"publisher\": \"OpenLogic\",\n \
+ \ \"offer\": \"CentOS\",\n \"sku\": \"8_5-gen2\",\n \
+ \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \
+ \ },\n \"Debian11\": {\n \"publisher\": \"Debian\"\
+ ,\n \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\"\
+ ,\n \"version\": \"latest\",\n \"architecture\": \"\
+ x64\"\n },\n \"OpenSuseLeap154Gen2\": {\n \"\
+ publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n \
+ \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \
+ \ \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\"\
+ : {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\"\
+ ,\n \"sku\": \"8-lvm-gen2\",\n \"version\": \"latest\"\
+ ,\n \"architecture\": \"x64\"\n },\n \"SuseSles15SP5\"\
+ : {\n \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp5\"\
+ ,\n \"sku\": \"gen2\",\n \"version\": \"latest\",\n\
+ \ \"architecture\": \"x64\"\n },\n \"Ubuntu2204\"\
+ : {\n \"publisher\": \"Canonical\",\n \"offer\": \"\
+ 0001-com-ubuntu-server-jammy\",\n \"sku\": \"22_04-lts-gen2\",\n\
+ \ \"version\": \"latest\",\n \"architecture\": \"x64\"\
+ \n },\n \"Ubuntu2404\": {\n \"publisher\": \"\
+ Canonical\",\n \"offer\": \"ubuntu-24_04-lts\",\n \"\
+ sku\": \"server\",\n \"version\": \"latest\",\n \"architecture\"\
+ : \"x64\"\n },\n \"Ubuntu2404Pro\": {\n \"publisher\"\
+ : \"Canonical\",\n \"offer\": \"ubuntu-24_04-lts\",\n \
+ \ \"sku\": \"ubuntu-pro\",\n \"version\": \"latest\",\n \
+ \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\"\
+ : {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\"\
+ ,\n \"sku\": \"stable-gen2\",\n \"version\": \"latest\"\
,\n \"architecture\": \"x64\"\n }\n },\n \
\ \"Windows\": {\n \"Win2022Datacenter\": {\n \"publisher\"\
: \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n\
@@ -1705,7 +1794,7 @@ interactions:
connection:
- keep-alive
content-length:
- - '3384'
+ - '3790'
content-security-policy:
- default-src 'none'; style-src 'unsafe-inline'; sandbox
content-type:
@@ -1713,13 +1802,13 @@ interactions:
cross-origin-resource-policy:
- cross-origin
date:
- - Mon, 26 Aug 2024 09:56:27 GMT
+ - Tue, 04 Mar 2025 03:07:01 GMT
etag:
- - W/"8f34071e3f10c641931f33307d1319d34bae37f557ea31022a455502dae9ebc2"
+ - W/"0f53b56eda413b90fc6365dd4848831171968adfbf5b440c8da07b5866a97d67"
expires:
- - Mon, 26 Aug 2024 10:01:27 GMT
+ - Tue, 04 Mar 2025 03:12:01 GMT
source-age:
- - '100'
+ - '211'
strict-transport-security:
- max-age=31536000
vary:
@@ -1733,15 +1822,15 @@ interactions:
x-content-type-options:
- nosniff
x-fastly-request-id:
- - dfdc03e3fd7ba534fd938b3920cacb6bfa1f9156
+ - 837a951c05332cbaa6ab26438ecc2ccb1265cbe0
x-frame-options:
- deny
x-github-request-id:
- - 8060:3C8180:13D484:1818B3:66CC1340
+ - C72E:7AC17:334F663:3AA2722:67C62776
x-served-by:
- - cache-tyo11953-TYO
+ - cache-sin-wsss1830038-SIN
x-timer:
- - S1724666187.066172,VS0,VE1
+ - S1741057621.106690,VS0,VE1
x-xss-protection:
- 1; mode=block
status:
@@ -1762,13 +1851,13 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions?$top=1&$orderby=name%20desc&api-version=2024-07-01
response:
body:
- string: "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\"\
- ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\
+ string: "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\"\
+ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\
\r\n }\r\n]"
headers:
cache-control:
@@ -1778,7 +1867,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:56:27 GMT
+ - Tue, 04 Mar 2025 03:07:01 GMT
expires:
- '-1'
pragma:
@@ -1792,9 +1881,9 @@ interactions:
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43998
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3748'
x-msedge-ref:
- - 'Ref A: 220B15D23F22445CABC7B84B3E342CF7 Ref B: TYO201100114011 Ref C: 2024-08-26T09:56:27Z'
+ - 'Ref A: E006008057D04FDDA343EFF855DC3AF2 Ref B: SEL221051803035 Ref C: 2025-03-04T03:07:01Z'
status:
code: 200
message: OK
@@ -1813,9 +1902,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2655.240810?api-version=2024-07-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.3207.250210?api-version=2024-07-01
response:
body:
string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \
@@ -1831,19 +1920,19 @@ interactions:
,\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"\
name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n \
\ }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\
- ,\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n \
- \ },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\
- \n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\
+ ,\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n\
+ \ \"goLiveDate\": \"2025-02-13T00:00:00+00:00\"\r\n },\r\n \"location\"\
+ : \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\
\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1184'
+ - '1232'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:56:28 GMT
+ - Tue, 04 Mar 2025 03:07:02 GMT
expires:
- '-1'
pragma:
@@ -1859,7 +1948,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 1D6ACAD01AE94E50ACA8AACB09FF08D0 Ref B: TYO201151004040 Ref C: 2024-08-26T09:56:28Z'
+ - 'Ref A: DFAD0D4BF75A48FBAD5CA271367AF08B Ref B: SEL221051801049 Ref C: 2025-03-04T03:07:01Z'
status:
code: 200
message: OK
@@ -1878,13 +1967,13 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions?$top=1&$orderby=name%20desc&api-version=2024-07-01
response:
body:
- string: "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\"\
- ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\
+ string: "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\"\
+ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\
\r\n }\r\n]"
headers:
cache-control:
@@ -1894,7 +1983,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:56:29 GMT
+ - Tue, 04 Mar 2025 03:07:02 GMT
expires:
- '-1'
pragma:
@@ -1908,9 +1997,9 @@ interactions:
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43997
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3748'
+ - '3749'
x-msedge-ref:
- - 'Ref A: DAEDD5DF502848DF9129869A9263F2D1 Ref B: TYO201151001009 Ref C: 2024-08-26T09:56:29Z'
+ - 'Ref A: 370A9DDB87DD43269918F3EB39A02604 Ref B: SEL221051804045 Ref C: 2025-03-04T03:07:02Z'
status:
code: 200
message: OK
@@ -1929,9 +2018,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2655.240810?api-version=2024-07-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.3207.250210?api-version=2024-07-01
response:
body:
string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \
@@ -1947,19 +2036,19 @@ interactions:
,\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"\
name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n \
\ }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\
- ,\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n \
- \ },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\
- \n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\
+ ,\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n\
+ \ \"goLiveDate\": \"2025-02-13T00:00:00+00:00\"\r\n },\r\n \"location\"\
+ : \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\
\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1184'
+ - '1232'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:56:29 GMT
+ - Tue, 04 Mar 2025 03:07:03 GMT
expires:
- '-1'
pragma:
@@ -1975,7 +2064,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 1265AAB41D61430292AE65645EB39C70 Ref B: TYO201100117049 Ref C: 2024-08-26T09:56:30Z'
+ - 'Ref A: 54FB977CD41145198B05D79EBCE0D91E Ref B: SEL221051805033 Ref C: 2025-03-04T03:07:03Z'
status:
code: 200
message: OK
@@ -1994,12 +2083,12 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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
@@ -2007,8 +2096,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
@@ -2016,8 +2106,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
@@ -2025,8 +2116,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
@@ -2034,8 +2126,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
@@ -2043,32 +2136,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
@@ -2083,13 +2229,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
@@ -2099,7 +2245,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2109,7 +2255,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2119,7 +2265,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2128,20 +2274,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
@@ -2151,7 +2297,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2161,7 +2307,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2170,7 +2316,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2179,7 +2325,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2188,7 +2334,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -2197,7 +2343,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -2206,7 +2352,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -2215,7 +2361,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2225,7 +2371,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2234,7 +2380,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2243,8 +2389,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
@@ -2253,8 +2399,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
@@ -2263,8 +2409,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
@@ -2273,8 +2419,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
@@ -2284,7 +2430,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -2294,7 +2440,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -2303,7 +2449,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
@@ -2313,7 +2459,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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
@@ -2323,7 +2469,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
@@ -2332,15 +2478,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
@@ -2349,7 +2495,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -2358,7 +2504,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","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
@@ -2368,16 +2514,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
@@ -2386,8 +2532,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
@@ -2396,14 +2542,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
@@ -2413,7 +2560,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US 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
@@ -2423,9 +2570,21 @@ 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-09-01-preview","2024-07-01","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-09-01-preview","2024-07-01","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":"networkSecurityPerimeters","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
+ South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland
+ West","East Asia","South Africa North","UK South","South India","Australia
+ Southeast","France South","West US 2","Sweden Central","Japan West","Norway
+ 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","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-06-01-preview","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":"2024-07-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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
@@ -2435,8 +2594,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":["2024-07-01","2024-06-01-preview","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
@@ -2446,8 +2605,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":["2024-07-01","2024-06-01-preview","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
@@ -2457,8 +2616,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-09-01-preview","2024-07-01","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
@@ -2468,8 +2627,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-09-01-preview","2024-07-01","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
@@ -2479,8 +2638,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
@@ -2490,8 +2649,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-09-01-preview","2024-07-01","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
@@ -2501,17 +2660,34 @@ 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-09-01-preview","2024-07-01","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","West Central US","East US 2 EUAP","Central
+ US EUAP"],"apiVersions":["2024-07-01","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","West Central US","East US 2 EUAP","Central
+ US EUAP"],"apiVersions":["2024-07-01","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-07-01","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-07-01","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
@@ -2521,8 +2697,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":["2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-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
@@ -2530,7 +2706,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
@@ -2538,7 +2714,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
@@ -2548,8 +2724,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
@@ -2560,8 +2736,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
@@ -2571,8 +2748,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
@@ -2583,11 +2760,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
@@ -2597,13 +2774,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
@@ -2613,7 +2790,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2622,7 +2799,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -2631,14 +2808,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
@@ -2648,7 +2826,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2657,20 +2835,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
@@ -2680,7 +2858,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -2689,7 +2867,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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
@@ -2698,20 +2876,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
@@ -2721,13 +2899,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
@@ -2737,7 +2915,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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
@@ -2747,13 +2925,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
@@ -2763,7 +2941,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
@@ -2771,8 +2949,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
@@ -2781,14 +2959,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
@@ -2798,7 +2976,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2808,7 +2986,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2818,7 +2996,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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
@@ -2828,7 +3006,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -2838,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","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2848,7 +3026,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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
@@ -2857,20 +3035,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
@@ -2880,7 +3058,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2890,7 +3068,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2900,7 +3078,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2910,8 +3088,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
@@ -2920,7 +3098,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2929,7 +3107,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2938,7 +3116,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2947,7 +3125,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","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
@@ -2956,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"],"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
@@ -2965,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","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2974,7 +3152,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2983,7 +3161,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -2992,7 +3170,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
@@ -3001,7 +3179,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
@@ -3010,7 +3188,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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
@@ -3019,7 +3197,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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
@@ -3028,7 +3206,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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
@@ -3037,7 +3215,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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
@@ -3046,7 +3224,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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
@@ -3055,7 +3233,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -3064,7 +3242,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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
@@ -3073,7 +3251,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -3082,7 +3260,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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
@@ -3091,7 +3269,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -3100,7 +3278,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -3109,7 +3287,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -3118,7 +3296,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -3127,7 +3305,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -3136,7 +3314,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -3146,13 +3324,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
@@ -3162,7 +3340,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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
@@ -3171,7 +3349,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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
@@ -3180,8 +3358,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
@@ -3191,7 +3369,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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
@@ -3200,7 +3378,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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
@@ -3210,7 +3388,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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
@@ -3219,7 +3397,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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
@@ -3228,7 +3406,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -3237,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"],"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
@@ -3246,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"],"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
@@ -3255,7 +3433,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -3264,7 +3442,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -3288,31 +3466,19 @@ 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,
- 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
- 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
- North","Germany West Central","Switzerland West","East Asia","South Africa
- North","UK South","South India","Australia Southeast","France South","West
- US 2","Sweden Central","Japan West","Norway 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"],"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 STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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":"networkWatchers/lenses","locations":["Central
+ US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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'
+ - '205648'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:56:31 GMT
+ - Tue, 04 Mar 2025 03:07:05 GMT
expires:
- '-1'
pragma:
@@ -3326,7 +3492,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: EEA8E47E46ED4085A8923D50473DA1D2 Ref B: TYO201151004034 Ref C: 2024-08-26T09:56:31Z'
+ - 'Ref A: 7AA2958498C348C180918EA09E5C9B90 Ref B: SEL221051503033 Ref C: 2025-03-04T03:07:04Z'
status:
code: 200
message: OK
@@ -3345,9 +3511,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2024-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2024-05-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/virtualNetworks/vnet1''
@@ -3361,7 +3527,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:56:31 GMT
+ - Tue, 04 Mar 2025 03:07:06 GMT
expires:
- '-1'
pragma:
@@ -3375,7 +3541,7 @@ interactions:
x-ms-failure-cause:
- gateway
x-msedge-ref:
- - 'Ref A: 5250196789D742ECADE536B8F5F57548 Ref B: TYO201151001025 Ref C: 2024-08-26T09:56:32Z'
+ - 'Ref A: 82C7D30911DF4177BB7D5AF3359BA576 Ref B: SEL221051504023 Ref C: 2025-03-04T03:07:06Z'
status:
code: 404
message: Not Found
@@ -3427,23 +3593,23 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_gkKv7Pf78RJ1kXfAFdyFWO4rrO8ZM4oP","name":"vm_deploy_gkKv7Pf78RJ1kXfAFdyFWO4rrO8ZM4oP","type":"Microsoft.Resources/deployments","properties":{"templateHash":"1172304238155310864","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-26T09:56:37.1060792Z","duration":"PT0.0002819S","correlationId":"e1e932f8-d2e5-4c1f-92d6-c2ae5af22c13","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus"]},{"resourceType":"networkSecurityGroups","locations":["eastus"]},{"resourceType":"publicIPAddresses","locations":["eastus"]},{"resourceType":"networkInterfaces","locations":["eastus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_aHlOO5mLzCodQyx6mpwxDOVVAVcHnSb4","name":"vm_deploy_aHlOO5mLzCodQyx6mpwxDOVVAVcHnSb4","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5483847284399416727","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-03-04T03:07:08.9898423Z","duration":"PT3.781883S","correlationId":"151baef2-470d-4796-a841-c3cfed55aaf5","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus"]},{"resourceType":"networkSecurityGroups","locations":["eastus"]},{"resourceType":"publicIPAddresses","locations":["eastus"]},{"resourceType":"networkInterfaces","locations":["eastus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_gkKv7Pf78RJ1kXfAFdyFWO4rrO8ZM4oP/operationStatuses/08584769406907908994?api-version=2022-09-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_aHlOO5mLzCodQyx6mpwxDOVVAVcHnSb4/operationStatuses/08584605492564828287?api-version=2022-09-01&t=638766544351773218&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=Mvg3KRrpNjSTiEjX1IkpbQIIeA0wlVCUZBCCoN7zLTnUpqVK7_othWWt_pcfSp2W-BecnJNEbyyf5dgBK2eAf3CbZncwYCMew0dSKdg1GOXLsFvnNY754ZESVbBPKLJJvKkIumhu8BvrsTaJdvQVqVW0VuC7IZzm1I_BTkZlr7fUF33dhjfSsVglpKm6RjBa6N2ie7VCBv1HAqfE1BwPYSD_r3eDmp7X2s-MBHyalmw_p8-PnXFIz1ddia-yNG_5SUnlFnnifvbf3smckYYl3rR_uqtaLv7JMmPz3KRAguD3XnTT-8MRPbw0uNWwQVe-npuDjuUZ1SM798yzQJEKuw&h=-4X7cyyHBsHH7KDauD2L8Y-U9K5XHxWRUR_dGsJXiDs
cache-control:
- no-cache
content-length:
- - '2364'
+ - '2363'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:56:37 GMT
+ - Tue, 04 Mar 2025 03:07:14 GMT
expires:
- '-1'
pragma:
@@ -3455,13 +3621,13 @@ interactions:
x-content-type-options:
- nosniff
x-ms-deployment-engine-version:
- - 1.95.0
+ - 1.245.0
x-ms-ratelimit-remaining-subscription-global-writes:
- '2999'
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: 920DAF337A104E7CB30D4B45BF05CAFC Ref B: TYO201151001023 Ref C: 2024-08-26T09:56:33Z'
+ - 'Ref A: 7C60E16F8B7943E3AADA3F039FFDAA1D Ref B: SEL221051802051 Ref C: 2025-03-04T03:07:07Z'
status:
code: 201
message: Created
@@ -3480,9 +3646,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769406907908994?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584605492564828287?api-version=2022-09-01&t=638766544351773218&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=Mvg3KRrpNjSTiEjX1IkpbQIIeA0wlVCUZBCCoN7zLTnUpqVK7_othWWt_pcfSp2W-BecnJNEbyyf5dgBK2eAf3CbZncwYCMew0dSKdg1GOXLsFvnNY754ZESVbBPKLJJvKkIumhu8BvrsTaJdvQVqVW0VuC7IZzm1I_BTkZlr7fUF33dhjfSsVglpKm6RjBa6N2ie7VCBv1HAqfE1BwPYSD_r3eDmp7X2s-MBHyalmw_p8-PnXFIz1ddia-yNG_5SUnlFnnifvbf3smckYYl3rR_uqtaLv7JMmPz3KRAguD3XnTT-8MRPbw0uNWwQVe-npuDjuUZ1SM798yzQJEKuw&h=-4X7cyyHBsHH7KDauD2L8Y-U9K5XHxWRUR_dGsJXiDs
response:
body:
string: '{"status":"Running"}'
@@ -3494,7 +3660,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:56:38 GMT
+ - Tue, 04 Mar 2025 03:07:15 GMT
expires:
- '-1'
pragma:
@@ -3506,9 +3672,56 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3748'
+ - '3749'
+ x-msedge-ref:
+ - 'Ref A: 89080D95417A4313BE4DCA6A7E6CD4C1 Ref B: SEL221051802051 Ref C: 2025-03-04T03:07:15Z'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -l -g -n --image --admin-username --admin-password --license-type --subnet
+ --vnet-name --nsg-rule
+ User-Agent:
+ - AZURECLI/2.70.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/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584605492564828287?api-version=2022-09-01&t=638766544351773218&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=Mvg3KRrpNjSTiEjX1IkpbQIIeA0wlVCUZBCCoN7zLTnUpqVK7_othWWt_pcfSp2W-BecnJNEbyyf5dgBK2eAf3CbZncwYCMew0dSKdg1GOXLsFvnNY754ZESVbBPKLJJvKkIumhu8BvrsTaJdvQVqVW0VuC7IZzm1I_BTkZlr7fUF33dhjfSsVglpKm6RjBa6N2ie7VCBv1HAqfE1BwPYSD_r3eDmp7X2s-MBHyalmw_p8-PnXFIz1ddia-yNG_5SUnlFnnifvbf3smckYYl3rR_uqtaLv7JMmPz3KRAguD3XnTT-8MRPbw0uNWwQVe-npuDjuUZ1SM798yzQJEKuw&h=-4X7cyyHBsHH7KDauD2L8Y-U9K5XHxWRUR_dGsJXiDs
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 04 Mar 2025 03:07:46 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: B03B40EE09AF4E1EB0583014EFEA8B90 Ref B: TYO201151001023 Ref C: 2024-08-26T09:56:38Z'
+ - 'Ref A: 3074250A496F4EC79216646D779EB413 Ref B: SEL221051802051 Ref C: 2025-03-04T03:07:45Z'
status:
code: 200
message: OK
@@ -3527,9 +3740,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769406907908994?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584605492564828287?api-version=2022-09-01&t=638766544351773218&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=Mvg3KRrpNjSTiEjX1IkpbQIIeA0wlVCUZBCCoN7zLTnUpqVK7_othWWt_pcfSp2W-BecnJNEbyyf5dgBK2eAf3CbZncwYCMew0dSKdg1GOXLsFvnNY754ZESVbBPKLJJvKkIumhu8BvrsTaJdvQVqVW0VuC7IZzm1I_BTkZlr7fUF33dhjfSsVglpKm6RjBa6N2ie7VCBv1HAqfE1BwPYSD_r3eDmp7X2s-MBHyalmw_p8-PnXFIz1ddia-yNG_5SUnlFnnifvbf3smckYYl3rR_uqtaLv7JMmPz3KRAguD3XnTT-8MRPbw0uNWwQVe-npuDjuUZ1SM798yzQJEKuw&h=-4X7cyyHBsHH7KDauD2L8Y-U9K5XHxWRUR_dGsJXiDs
response:
body:
string: '{"status":"Running"}'
@@ -3541,7 +3754,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:08 GMT
+ - Tue, 04 Mar 2025 03:08:17 GMT
expires:
- '-1'
pragma:
@@ -3555,7 +3768,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 3B12F1DE3E6B4C179DA78B798825AAC5 Ref B: TYO201151001023 Ref C: 2024-08-26T09:57:08Z'
+ - 'Ref A: 09E095158E634B40A13A27B58BBC3493 Ref B: SEL221051802051 Ref C: 2025-03-04T03:08:16Z'
status:
code: 200
message: OK
@@ -3574,9 +3787,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769406907908994?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584605492564828287?api-version=2022-09-01&t=638766544351773218&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=Mvg3KRrpNjSTiEjX1IkpbQIIeA0wlVCUZBCCoN7zLTnUpqVK7_othWWt_pcfSp2W-BecnJNEbyyf5dgBK2eAf3CbZncwYCMew0dSKdg1GOXLsFvnNY754ZESVbBPKLJJvKkIumhu8BvrsTaJdvQVqVW0VuC7IZzm1I_BTkZlr7fUF33dhjfSsVglpKm6RjBa6N2ie7VCBv1HAqfE1BwPYSD_r3eDmp7X2s-MBHyalmw_p8-PnXFIz1ddia-yNG_5SUnlFnnifvbf3smckYYl3rR_uqtaLv7JMmPz3KRAguD3XnTT-8MRPbw0uNWwQVe-npuDjuUZ1SM798yzQJEKuw&h=-4X7cyyHBsHH7KDauD2L8Y-U9K5XHxWRUR_dGsJXiDs
response:
body:
string: '{"status":"Succeeded"}'
@@ -3588,7 +3801,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:39 GMT
+ - Tue, 04 Mar 2025 03:08:48 GMT
expires:
- '-1'
pragma:
@@ -3602,7 +3815,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 5A5681731C794C51A545BDF0C76BE598 Ref B: TYO201151001023 Ref C: 2024-08-26T09:57:39Z'
+ - 'Ref A: 0BBE103C55454D6FB3B57DC28A11C7AA Ref B: SEL221051802051 Ref C: 2025-03-04T03:08:47Z'
status:
code: 200
message: OK
@@ -3621,21 +3834,21 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_gkKv7Pf78RJ1kXfAFdyFWO4rrO8ZM4oP","name":"vm_deploy_gkKv7Pf78RJ1kXfAFdyFWO4rrO8ZM4oP","type":"Microsoft.Resources/deployments","properties":{"templateHash":"1172304238155310864","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-26T09:57:09.238174Z","duration":"PT32.1323767S","correlationId":"e1e932f8-d2e5-4c1f-92d6-c2ae5af22c13","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus"]},{"resourceType":"networkSecurityGroups","locations":["eastus"]},{"resourceType":"publicIPAddresses","locations":["eastus"]},{"resourceType":"networkInterfaces","locations":["eastus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_aHlOO5mLzCodQyx6mpwxDOVVAVcHnSb4","name":"vm_deploy_aHlOO5mLzCodQyx6mpwxDOVVAVcHnSb4","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5483847284399416727","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-03-04T03:08:23.3791543Z","duration":"PT1M10.6077144S","correlationId":"151baef2-470d-4796-a841-c3cfed55aaf5","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus"]},{"resourceType":"networkSecurityGroups","locations":["eastus"]},{"resourceType":"publicIPAddresses","locations":["eastus"]},{"resourceType":"networkInterfaces","locations":["eastus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1"}]}}'
headers:
cache-control:
- no-cache
content-length:
- - '3131'
+ - '3134'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:40 GMT
+ - Tue, 04 Mar 2025 03:08:49 GMT
expires:
- '-1'
pragma:
@@ -3649,7 +3862,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: F01030A157D04E67A672427CDF1D7316 Ref B: TYO201151001023 Ref C: 2024-08-26T09:57:39Z'
+ - 'Ref A: 2FAFFCA371C54C4F8F998374AABD1546 Ref B: SEL221051802051 Ref C: 2025-03-04T03:08:48Z'
status:
code: 200
message: OK
@@ -3668,7 +3881,7 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2024-07-01
response:
@@ -3677,16 +3890,16 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"cb76bd43-0c64-4a8d-9928-a2d1fd8addf1\"\
+ : \"Succeeded\",\r\n \"vmId\": \"897f2be2-686e-4f70-8ac8-9d373f6823cb\"\
,\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"\
publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\"\
,\r\n \"sku\": \"2022-datacenter-g2\",\r\n \"version\": \"latest\"\
- ,\r\n \"exactVersion\": \"20348.2655.240810\"\r\n },\r\n \
+ ,\r\n \"exactVersion\": \"20348.3207.250210\"\r\n },\r\n \
\ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"\
- vm1_disk1_c8aab916b406483f946ee65f1755a038\",\r\n \"createOption\"\
+ vm1_OsDisk_1_2d17ea82e4894c2fa944b764ffbec479\",\r\n \"createOption\"\
: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\"\
: {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_c8aab916b406483f946ee65f1755a038\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_2d17ea82e4894c2fa944b764ffbec479\"\
\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\
: 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\"\
: \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"\
@@ -3705,30 +3918,30 @@ interactions:
\ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\"\
,\r\n \"level\": \"Warning\",\r\n \"displayStatus\"\
: \"Not Ready\",\r\n \"message\": \"VM status blob is found but\
- \ not yet populated.\",\r\n \"time\": \"2024-08-26T09:57:41+00:00\"\
+ \ not yet populated.\",\r\n \"time\": \"2025-03-04T03:08:50+00:00\"\
\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n \
- \ {\r\n \"name\": \"vm1_disk1_c8aab916b406483f946ee65f1755a038\"\
+ \ {\r\n \"name\": \"vm1_OsDisk_1_2d17ea82e4894c2fa944b764ffbec479\"\
,\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:56:50.2305899+00:00\"\r\n }\r\
+ \ \"time\": \"2025-03-04T03:07:31.1745985+00:00\"\r\n }\r\
\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V2\"\
,\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\
,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\
- \ succeeded\",\r\n \"time\": \"2024-08-26T09:57:06.012093+00:00\"\
+ \ succeeded\",\r\n \"time\": \"2025-03-04T03:08:19.8778023+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:56:47.4180682+00:00\"\
+ \r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-03-04T03:07:27.7214611+00:00\"\
\r\n },\r\n \"etag\": \"\\\"2\\\"\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '3464'
+ - '3474'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:41 GMT
+ - Tue, 04 Mar 2025 03:08:50 GMT
expires:
- '-1'
pragma:
@@ -3739,12 +3952,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'
x-msedge-ref:
- - 'Ref A: 813B4F60155949DD9985AED0C08B439F Ref B: TYO201151006011 Ref C: 2024-08-26T09:57:41Z'
+ - 'Ref A: 5E5F29C584FE4451B6AF47097F79C853 Ref B: SEL221051504021 Ref C: 2025-03-04T03:08:49Z'
status:
code: 200
message: ''
@@ -3763,12 +3978,12 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2022-01-01
response:
body:
- string: '{"name":"vm1VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","etag":"W/\"e0371121-9cde-478f-9bfa-b3e87cd4ce5f\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"9bd20ac1-7b17-48cf-a87b-4f0a2b90f8df","ipConfigurations":[{"name":"ipconfigvm1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1","etag":"W/\"e0371121-9cde-478f-9bfa-b3e87cd4ce5f\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"i0gi2v2vl5deje3nvimsj4rw3b.bx.internal.cloudapp.net"},"macAddress":"60-45-BD-EF-F6-21","enableAcceleratedNetworking":false,"vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":true,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"eastus","kind":"Regular"}'
+ string: '{"name":"vm1VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","etag":"W/\"e517cabb-7cf1-43ca-9f22-cac77fc0ae55\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"3029382e-db58-45bc-bcd1-a3f1e0c83d16","ipConfigurations":[{"name":"ipconfigvm1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1","etag":"W/\"e517cabb-7cf1-43ca-9f22-cac77fc0ae55\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"cfgrbfvvco5elh2cdzp3pe5alg.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-9B-68-9C","enableAcceleratedNetworking":false,"vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":true,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"eastus","kind":"Regular"}'
headers:
cache-control:
- no-cache
@@ -3777,9 +3992,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:41 GMT
+ - Tue, 04 Mar 2025 03:08:51 GMT
etag:
- - W/"e0371121-9cde-478f-9bfa-b3e87cd4ce5f"
+ - W/"e517cabb-7cf1-43ca-9f22-cac77fc0ae55"
expires:
- '-1'
pragma:
@@ -3791,11 +4006,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 82d107cb-f1fb-408d-8cd5-28fddb131001
+ - 5cdcd05e-2b56-4338-ba00-67282a873c01
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 3B6E53563D9A4C5C8E91436C1AD7C094 Ref B: TYO201100114023 Ref C: 2024-08-26T09:57:42Z'
+ - 'Ref A: 816B4430ADC14FF597BFC8F60BEF15BF Ref B: SEL221051504049 Ref C: 2025-03-04T03:08:50Z'
status:
code: 200
message: OK
@@ -3814,12 +4029,12 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2022-01-01
response:
body:
- string: '{"name":"vm1PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","etag":"W/\"ca333311-60dc-4c5c-b812-cfbfcecd9d5c\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"ece0080d-7185-441e-97e4-9532c515556c","ipAddress":"52.234.154.132","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}'
+ string: '{"name":"vm1PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","etag":"W/\"1b904fab-c967-4468-9f66-3b797b8767f8\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"3cc29853-e99d-4ac0-bce2-00a0bd061cc9","ipAddress":"20.185.244.178","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}'
headers:
cache-control:
- no-cache
@@ -3828,9 +4043,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:42 GMT
+ - Tue, 04 Mar 2025 03:08:52 GMT
etag:
- - W/"ca333311-60dc-4c5c-b812-cfbfcecd9d5c"
+ - W/"1b904fab-c967-4468-9f66-3b797b8767f8"
expires:
- '-1'
pragma:
@@ -3842,11 +4057,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 116d7dce-e96a-471f-8bd1-49c842212023
+ - aa82a775-a64a-46be-80b4-646ff6408d95
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 84901B37B8A04304A275A454A1C52E58 Ref B: TYO201151002034 Ref C: 2024-08-26T09:57:42Z'
+ - 'Ref A: 721FA72E7EF047ADB7050071EA584BB2 Ref B: SEL221051801009 Ref C: 2025-03-04T03:08:51Z'
status:
code: 200
message: OK
@@ -3864,23 +4079,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.70.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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-01-01
response:
body:
- string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"c888a5bd-a304-497c-a9fd-c713a12cdf95\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGKSRDGBCOEHIFWLUFTHVGVR4ARHBZLKW74YFKMDEQXAD3MPJR4GNGO564L2XCCYKVV/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}'
+ string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"ad5207e7-8180-434a-8bb7-5dbf13fe0274\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGDGOFXDOUVVF5GPE2F7BMKRNWDX6OS6WRYAS32YZQGX5FHNAVNUR4GSNQJ3CV5WY6B/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}'
headers:
cache-control:
- no-cache
content-length:
- - '750'
+ - '719'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:43 GMT
+ - Tue, 04 Mar 2025 03:08:53 GMT
etag:
- - W/"c888a5bd-a304-497c-a9fd-c713a12cdf95"
+ - W/"ad5207e7-8180-434a-8bb7-5dbf13fe0274"
expires:
- '-1'
pragma:
@@ -3892,11 +4107,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 7e906a5b-3dd3-4d62-8007-169881add860
+ - 2a8c434b-0931-4714-a7d5-a023270db60f
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3748'
x-msedge-ref:
- - 'Ref A: 7241F786D0A3471D9E60120164005C8E Ref B: TYO201151004034 Ref C: 2024-08-26T09:57:43Z'
+ - 'Ref A: B02F7DEC76E74996AC9E5FA11780C929 Ref B: SEL221051504049 Ref C: 2025-03-04T03:08:53Z'
status:
code: 200
message: OK
@@ -3921,25 +4136,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.70.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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-01-01
response:
body:
- string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"fbbd1cfd-a123-4663-9460-e6b54cd4a1e1\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}'
+ string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"c973778c-6be9-4f4c-b965-2d448fce0533\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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/eastus/operations/b1bf636a-c4a3-4be4-8a1f-b671659cbdef?api-version=2024-01-01&t=638602630653203157&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=YVRh8vVlXccI2-93IFfaIfROPVPhsKgUyck40Dz5YI8zHlIfeq5oZ-ZgWuoRW6-ago-oeflpoQ6-2QnZeTKZ8MomUY-afJwXnBzGQqEU2OAF6seq8XGUuRM2I7bqgCvrgQkXhCh3qEbmGxXq3fxQGbY-Mw0GwTukBrsxXIs1jIw4AvQtrA6Vom5XD2zbnSYY4EMzNtU5yZJgZWkDZ2968dJYyZDPgCyn0ETLCqWf0MyHrwkXZQmmjhyJyhj1C1NwSb3ehdWna1vkeSqh_6r1DduPQoaTDzpu2nQzJIb45J2sWSchzYRhHNfbLOihJodTXx28DwV0txl6t8dph3I1lw&h=7gUAhBcVCj6ExAzzoenS7eZYhkBsz5XB_GO0bUV3cmg
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/cb2bedbe-e15a-4d1a-a980-930ae6b7b299?api-version=2024-01-01&t=638766545351551292&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=jMvHp6nCJJ_AtBX3DmILz2qgYT7kQtOG85jUXV9aPpI0VYjkqE8Iwk9suskG6G6fUi4ZD_B2zXNiGMqT6B19Ijsnz9qNfWe6PclWsJo7t-g1noFj9DQUcXzJkmvMbJwfS_ffjNLhUnDvjR36wF9CK9OScrQvrc0ixudd2YriL3JmHDQCGtxYEt_iheNOlRH5BxMDaGq97hMrmvuwBZFyv1mjDgF_B7yqzQNa59Zf8nF0l-8A_nKnHGMtGR-ur8xUvO07HNAGG_-Kv7lxxIZ2n-Kh8qusSqD__ECcty9AEIXfc3DXbY_IjGbgZ5o5mcI4u51FyQuD7qMOFy3gi014uQ&h=_bu96lRRdpufYEc4iiLL0XJ68epELiMyMAsmHUzGJPY
cache-control:
- no-cache
content-length:
- - '720'
+ - '689'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:45 GMT
+ - Tue, 04 Mar 2025 03:08:54 GMT
expires:
- '-1'
pragma:
@@ -3951,13 +4166,13 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 97512044-9953-47a5-9c28-d34819319b74
+ - 010885bf-418b-460a-b2d1-26ab16abdcb0
x-ms-ratelimit-remaining-subscription-global-writes:
- '2999'
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: 894738E1E4734F2397EE051AADF9870B Ref B: TYO201151004034 Ref C: 2024-08-26T09:57:44Z'
+ - 'Ref A: ACC3EC4C90CC40038C01CE3637D4C63F Ref B: SEL221051504049 Ref C: 2025-03-04T03:08:54Z'
status:
code: 200
message: OK
@@ -3975,9 +4190,9 @@ 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.70.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/eastus/operations/b1bf636a-c4a3-4be4-8a1f-b671659cbdef?api-version=2024-01-01&t=638602630653203157&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=YVRh8vVlXccI2-93IFfaIfROPVPhsKgUyck40Dz5YI8zHlIfeq5oZ-ZgWuoRW6-ago-oeflpoQ6-2QnZeTKZ8MomUY-afJwXnBzGQqEU2OAF6seq8XGUuRM2I7bqgCvrgQkXhCh3qEbmGxXq3fxQGbY-Mw0GwTukBrsxXIs1jIw4AvQtrA6Vom5XD2zbnSYY4EMzNtU5yZJgZWkDZ2968dJYyZDPgCyn0ETLCqWf0MyHrwkXZQmmjhyJyhj1C1NwSb3ehdWna1vkeSqh_6r1DduPQoaTDzpu2nQzJIb45J2sWSchzYRhHNfbLOihJodTXx28DwV0txl6t8dph3I1lw&h=7gUAhBcVCj6ExAzzoenS7eZYhkBsz5XB_GO0bUV3cmg
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/cb2bedbe-e15a-4d1a-a980-930ae6b7b299?api-version=2024-01-01&t=638766545351551292&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=jMvHp6nCJJ_AtBX3DmILz2qgYT7kQtOG85jUXV9aPpI0VYjkqE8Iwk9suskG6G6fUi4ZD_B2zXNiGMqT6B19Ijsnz9qNfWe6PclWsJo7t-g1noFj9DQUcXzJkmvMbJwfS_ffjNLhUnDvjR36wF9CK9OScrQvrc0ixudd2YriL3JmHDQCGtxYEt_iheNOlRH5BxMDaGq97hMrmvuwBZFyv1mjDgF_B7yqzQNa59Zf8nF0l-8A_nKnHGMtGR-ur8xUvO07HNAGG_-Kv7lxxIZ2n-Kh8qusSqD__ECcty9AEIXfc3DXbY_IjGbgZ5o5mcI4u51FyQuD7qMOFy3gi014uQ&h=_bu96lRRdpufYEc4iiLL0XJ68epELiMyMAsmHUzGJPY
response:
body:
string: '{"status":"Succeeded"}'
@@ -3989,7 +4204,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:45 GMT
+ - Tue, 04 Mar 2025 03:08:54 GMT
expires:
- '-1'
pragma:
@@ -4001,11 +4216,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - bb2fa801-dd6d-436d-903a-1bf0ba624daa
+ - 6733445a-14e3-4e03-888f-0bf864033d8b
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 28EB7A420DB242A1A9D15ECC1F1558AA Ref B: TYO201151004034 Ref C: 2024-08-26T09:57:45Z'
+ - 'Ref A: 1A3547435D4646C7810EE15B9DE0D129 Ref B: SEL221051504049 Ref C: 2025-03-04T03:08:55Z'
status:
code: 200
message: OK
@@ -4023,23 +4238,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.70.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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-01-01
response:
body:
- string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"f9171b77-3e19-4591-a9d5-462a5a086b8c\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGKSRDGBCOEHIFWLUFTHVGVR4ARHBZLKW74YFKMDEQXAD3MPJR4GNGO564L2XCCYKVV/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}'
+ string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"783cd08e-aedb-4cfc-acf7-b12b4eac351a\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGDGOFXDOUVVF5GPE2F7BMKRNWDX6OS6WRYAS32YZQGX5FHNAVNUR4GSNQJ3CV5WY6B/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:
- - '780'
+ - '749'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:45 GMT
+ - Tue, 04 Mar 2025 03:08:55 GMT
etag:
- - W/"f9171b77-3e19-4591-a9d5-462a5a086b8c"
+ - W/"783cd08e-aedb-4cfc-acf7-b12b4eac351a"
expires:
- '-1'
pragma:
@@ -4051,11 +4266,57 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 9d370379-18d0-499e-bf96-2dc3b0281313
+ - dd807cb6-f6f1-414f-8913-844e776d8b38
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3748'
+ x-msedge-ref:
+ - 'Ref A: 17F2DC20492F421E8B51A9D249DB8043 Ref B: SEL221051504049 Ref C: 2025-03-04T03:08:55Z'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm application set
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --app-version-ids
+ User-Agent:
+ - AZURECLI/2.70.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/clitest.rg000001?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_add_application_empty_version_ids","date":"2025-03-04T03:06:52Z","module":"vm","Creator":"zhuyan@microsoft.com","DateCreated":"2025-03-04T03:06:58Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '445'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 04 Mar 2025 03:08:57 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-cache:
+ - CONFIG_NOCACHE
+ x-content-type-options:
+ - nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: E286D9FED55541A4B436C50E6D4418FB Ref B: TYO201151004034 Ref C: 2024-08-26T09:57:45Z'
+ - 'Ref A: 91F82181FBD344E79CFEDF478A9006B4 Ref B: SEL221051803047 Ref C: 2025-03-04T03:08:56Z'
status:
code: 200
message: OK
@@ -4073,7 +4334,7 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-07-01
response:
@@ -4082,16 +4343,16 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"cb76bd43-0c64-4a8d-9928-a2d1fd8addf1\"\
+ : \"Succeeded\",\r\n \"vmId\": \"897f2be2-686e-4f70-8ac8-9d373f6823cb\"\
,\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"\
publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\"\
,\r\n \"sku\": \"2022-datacenter-g2\",\r\n \"version\": \"latest\"\
- ,\r\n \"exactVersion\": \"20348.2655.240810\"\r\n },\r\n \
+ ,\r\n \"exactVersion\": \"20348.3207.250210\"\r\n },\r\n \
\ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"\
- vm1_disk1_c8aab916b406483f946ee65f1755a038\",\r\n \"createOption\"\
+ vm1_OsDisk_1_2d17ea82e4894c2fa944b764ffbec479\",\r\n \"createOption\"\
: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\"\
: {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_c8aab916b406483f946ee65f1755a038\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_2d17ea82e4894c2fa944b764ffbec479\"\
\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\
: 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\"\
: \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"\
@@ -4106,17 +4367,17 @@ interactions:
\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n },\r\n \"\
networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"timeCreated\": \"\
- 2024-08-26T09:56:47.4180682+00:00\"\r\n },\r\n \"etag\": \"\\\"2\\\"\"\r\
+ 2025-03-04T03:07:27.7214611+00:00\"\r\n },\r\n \"etag\": \"\\\"2\\\"\"\r\
\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2262'
+ - '2268'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:46 GMT
+ - Tue, 04 Mar 2025 03:08:58 GMT
etag:
- '"2"'
expires:
@@ -4129,31 +4390,33 @@ 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:
- - '3748'
+ - '3749'
x-msedge-ref:
- - 'Ref A: D9BA7E57C904440E96D97F9FDCBAE181 Ref B: TYO201151005060 Ref C: 2024-08-26T09:57:46Z'
+ - 'Ref A: 9EB0E933FE28448B8FB5275C4FFEC826 Ref B: SEL221051802017 Ref C: 2025-03-04T03:08:58Z'
status:
code: 200
message: ''
- request:
- body: '{"location": "eastus", "tags": {}, "properties": {"hardwareProfile": {"vmSize":
- "Standard_DS1_v2"}, "storageProfile": {"imageReference": {"publisher": "MicrosoftWindowsServer",
- "offer": "WindowsServer", "sku": "2022-datacenter-g2", "version": "latest"},
- "osDisk": {"osType": "Windows", "name": "vm1_disk1_c8aab916b406483f946ee65f1755a038",
- "caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 127, "managedDisk":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_c8aab916b406483f946ee65f1755a038",
- "storageAccountType": "Premium_LRS"}, "deleteOption": "Detach"}, "dataDisks":
- [], "diskControllerType": "SCSI"}, "osProfile": {"computerName": "vm1", "adminUsername":
- "clitest1234", "windowsConfiguration": {"provisionVMAgent": true, "enableAutomaticUpdates":
- true, "patchSettings": {"patchMode": "AutomaticByOS", "assessmentMode": "ImageDefault"}},
- "secrets": [], "allowExtensionOperations": true, "requireGuestProvisionSignal":
- true}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"}]},
- "securityProfile": {"uefiSettings": {"secureBootEnabled": true, "vTpmEnabled":
- true}, "securityType": "TrustedLaunch"}, "licenseType": "Windows_Server", "applicationProfile":
- {"galleryApplications": []}}}'
+ body: '{"location": "eastus", "properties": {"applicationProfile": {"galleryApplications":
+ []}, "hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "licenseType": "Windows_Server",
+ "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"}]},
+ "osProfile": {"adminUsername": "clitest1234", "allowExtensionOperations": true,
+ "computerName": "vm1", "requireGuestProvisionSignal": true, "secrets": [], "windowsConfiguration":
+ {"enableAutomaticUpdates": true, "patchSettings": {"assessmentMode": "ImageDefault",
+ "patchMode": "AutomaticByOS"}, "provisionVMAgent": true}}, "securityProfile":
+ {"securityType": "TrustedLaunch", "uefiSettings": {"secureBootEnabled": true,
+ "vTpmEnabled": true}}, "storageProfile": {"dataDisks": [], "diskControllerType":
+ "SCSI", "imageReference": {"offer": "WindowsServer", "publisher": "MicrosoftWindowsServer",
+ "sku": "2022-datacenter-g2", "version": "latest"}, "osDisk": {"caching": "ReadWrite",
+ "createOption": "FromImage", "deleteOption": "Detach", "diskSizeGB": 127, "managedDisk":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_2d17ea82e4894c2fa944b764ffbec479",
+ "storageAccountType": "Premium_LRS"}, "name": "vm1_OsDisk_1_2d17ea82e4894c2fa944b764ffbec479",
+ "osType": "Windows"}}}, "tags": {}}'
headers:
Accept:
- application/json
@@ -4164,13 +4427,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1431'
+ - '1437'
Content-Type:
- application/json
ParameterSetName:
- -g -n --app-version-ids
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-07-01
response:
@@ -4179,16 +4442,16 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"vmId\": \"cb76bd43-0c64-4a8d-9928-a2d1fd8addf1\"\
+ : \"Updating\",\r\n \"vmId\": \"897f2be2-686e-4f70-8ac8-9d373f6823cb\"\
,\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"\
publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\"\
,\r\n \"sku\": \"2022-datacenter-g2\",\r\n \"version\": \"latest\"\
- ,\r\n \"exactVersion\": \"20348.2655.240810\"\r\n },\r\n \
+ ,\r\n \"exactVersion\": \"20348.3207.250210\"\r\n },\r\n \
\ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"\
- vm1_disk1_c8aab916b406483f946ee65f1755a038\",\r\n \"createOption\"\
+ vm1_OsDisk_1_2d17ea82e4894c2fa944b764ffbec479\",\r\n \"createOption\"\
: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\"\
: {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_c8aab916b406483f946ee65f1755a038\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_2d17ea82e4894c2fa944b764ffbec479\"\
\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\
: 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\"\
: \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"\
@@ -4203,17 +4466,17 @@ interactions:
\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n },\r\n \"\
networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"timeCreated\": \"\
- 2024-08-26T09:56:47.4180682+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\"\r\
+ 2025-03-04T03:07:27.7214611+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\"\r\
\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2261'
+ - '2267'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:48 GMT
+ - Tue, 04 Mar 2025 03:09:01 GMT
etag:
- '"3"'
expires:
@@ -4226,14 +4489,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;1494,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: 7791BF6E295E4439A4C7901B5000FD4C Ref B: TYO201151005060 Ref C: 2024-08-26T09:57:47Z'
+ - 'Ref A: 5F964CFD6686475D93DB554EDE33BF1C Ref B: SEL221051802017 Ref C: 2025-03-04T03:08:58Z'
status:
code: 200
message: ''
@@ -4251,7 +4516,7 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-07-01
response:
@@ -4260,16 +4525,16 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"cb76bd43-0c64-4a8d-9928-a2d1fd8addf1\"\
+ : \"Succeeded\",\r\n \"vmId\": \"897f2be2-686e-4f70-8ac8-9d373f6823cb\"\
,\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"\
publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\"\
,\r\n \"sku\": \"2022-datacenter-g2\",\r\n \"version\": \"latest\"\
- ,\r\n \"exactVersion\": \"20348.2655.240810\"\r\n },\r\n \
+ ,\r\n \"exactVersion\": \"20348.3207.250210\"\r\n },\r\n \
\ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"\
- vm1_disk1_c8aab916b406483f946ee65f1755a038\",\r\n \"createOption\"\
+ vm1_OsDisk_1_2d17ea82e4894c2fa944b764ffbec479\",\r\n \"createOption\"\
: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\"\
: {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_c8aab916b406483f946ee65f1755a038\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_2d17ea82e4894c2fa944b764ffbec479\"\
\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\
: 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\"\
: \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"\
@@ -4284,17 +4549,17 @@ interactions:
\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n },\r\n \"\
networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"timeCreated\": \"\
- 2024-08-26T09:56:47.4180682+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\"\r\
+ 2025-03-04T03:07:27.7214611+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\"\r\
\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2262'
+ - '2268'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:49 GMT
+ - Tue, 04 Mar 2025 03:09:01 GMT
etag:
- '"3"'
expires:
@@ -4307,12 +4572,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;23997,Microsoft.Compute/LowCostGetResource;31
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23995,Microsoft.Compute/LowCostGetResource;31
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 05253F75296E4B6E9484879C3FF52D1B Ref B: TYO201151005060 Ref C: 2024-08-26T09:57:49Z'
+ - 'Ref A: F36CA6F9C11E4A53AAD4BA8E0153B260 Ref B: SEL221051802017 Ref C: 2025-03-04T03:09:01Z'
status:
code: 200
message: ''
@@ -4330,7 +4597,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.70.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/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-07-01
response:
@@ -4339,16 +4606,16 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"cb76bd43-0c64-4a8d-9928-a2d1fd8addf1\"\
+ : \"Succeeded\",\r\n \"vmId\": \"897f2be2-686e-4f70-8ac8-9d373f6823cb\"\
,\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"\
publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\"\
,\r\n \"sku\": \"2022-datacenter-g2\",\r\n \"version\": \"latest\"\
- ,\r\n \"exactVersion\": \"20348.2655.240810\"\r\n },\r\n \
+ ,\r\n \"exactVersion\": \"20348.3207.250210\"\r\n },\r\n \
\ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"\
- vm1_disk1_c8aab916b406483f946ee65f1755a038\",\r\n \"createOption\"\
+ vm1_OsDisk_1_2d17ea82e4894c2fa944b764ffbec479\",\r\n \"createOption\"\
: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\"\
: {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_c8aab916b406483f946ee65f1755a038\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_2d17ea82e4894c2fa944b764ffbec479\"\
\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\
: 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\"\
: \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"\
@@ -4363,17 +4630,17 @@ interactions:
\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n },\r\n \"\
networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"timeCreated\": \"\
- 2024-08-26T09:56:47.4180682+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\"\r\
+ 2025-03-04T03:07:27.7214611+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\"\r\
\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2262'
+ - '2268'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:49 GMT
+ - Tue, 04 Mar 2025 03:09:02 GMT
etag:
- '"3"'
expires:
@@ -4386,12 +4653,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;30
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23994,Microsoft.Compute/LowCostGetResource;30
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 7C1D16C043C044C68FB0D95C30B0EA1D Ref B: TYO201151005040 Ref C: 2024-08-26T09:57:50Z'
+ - 'Ref A: 2DA7F3C3A24243AFA9115F8979BE4F6D Ref B: SEL221051805019 Ref C: 2025-03-04T03:09:02Z'
status:
code: 200
message: ''
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_add_application_with_config_override.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_add_application_with_config_override.yaml
index cce4548605a..5b3aadb1ecd 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_add_application_with_config_override.yaml
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_add_application_with_config_override.yaml
@@ -18,28 +18,34 @@ interactions:
,\n \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\"\
: {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"\
type\": \"object\",\n \"value\": {\n \"Linux\": {\n \"\
- CentOS85Gen2\": {\n \"publisher\": \"OpenLogic\",\n \
- \ \"offer\": \"CentOS\",\n \"sku\": \"8_5-gen2\",\n \
- \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \
- \ },\n \"Debian11\": {\n \"publisher\": \"Debian\"\
- ,\n \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\"\
- ,\n \"version\": \"latest\",\n \"architecture\": \"\
- x64\"\n },\n \"FlatcarLinuxFreeGen2\": {\n \"\
- publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\"\
- ,\n \"sku\": \"stable-gen2\",\n \"version\": \"latest\"\
- ,\n \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\"\
- : {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\"\
- ,\n \"sku\": \"gen2\",\n \"version\": \"latest\",\n\
- \ \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\"\
- : {\n \"publisher\": \"RedHat\",\n \"offer\": \"\
- RHEL\",\n \"sku\": \"8-lvm-gen2\",\n \"version\": \
- \ \"latest\",\n \"architecture\": \"x64\"\n },\n \
- \ \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n \
- \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \
- \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \
- \ },\n \"Ubuntu2204\": {\n \"publisher\": \"\
- Canonical\",\n \"offer\": \"0001-com-ubuntu-server-jammy\",\n\
- \ \"sku\": \"22_04-lts-gen2\",\n \"version\": \"latest\"\
+ CentOS85Gen2\": {\n \"publisher\": \"OpenLogic\",\n \
+ \ \"offer\": \"CentOS\",\n \"sku\": \"8_5-gen2\",\n \
+ \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \
+ \ },\n \"Debian11\": {\n \"publisher\": \"Debian\"\
+ ,\n \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\"\
+ ,\n \"version\": \"latest\",\n \"architecture\": \"\
+ x64\"\n },\n \"OpenSuseLeap154Gen2\": {\n \"\
+ publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n \
+ \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \
+ \ \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\"\
+ : {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\"\
+ ,\n \"sku\": \"8-lvm-gen2\",\n \"version\": \"latest\"\
+ ,\n \"architecture\": \"x64\"\n },\n \"SuseSles15SP5\"\
+ : {\n \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp5\"\
+ ,\n \"sku\": \"gen2\",\n \"version\": \"latest\",\n\
+ \ \"architecture\": \"x64\"\n },\n \"Ubuntu2204\"\
+ : {\n \"publisher\": \"Canonical\",\n \"offer\": \"\
+ 0001-com-ubuntu-server-jammy\",\n \"sku\": \"22_04-lts-gen2\",\n\
+ \ \"version\": \"latest\",\n \"architecture\": \"x64\"\
+ \n },\n \"Ubuntu2404\": {\n \"publisher\": \"\
+ Canonical\",\n \"offer\": \"ubuntu-24_04-lts\",\n \"\
+ sku\": \"server\",\n \"version\": \"latest\",\n \"architecture\"\
+ : \"x64\"\n },\n \"Ubuntu2404Pro\": {\n \"publisher\"\
+ : \"Canonical\",\n \"offer\": \"ubuntu-24_04-lts\",\n \
+ \ \"sku\": \"ubuntu-pro\",\n \"version\": \"latest\",\n \
+ \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\"\
+ : {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\"\
+ ,\n \"sku\": \"stable-gen2\",\n \"version\": \"latest\"\
,\n \"architecture\": \"x64\"\n }\n },\n \
\ \"Windows\": {\n \"Win2022Datacenter\": {\n \"publisher\"\
: \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n\
@@ -73,7 +79,7 @@ interactions:
connection:
- keep-alive
content-length:
- - '3384'
+ - '3790'
content-security-policy:
- default-src 'none'; style-src 'unsafe-inline'; sandbox
content-type:
@@ -81,13 +87,13 @@ interactions:
cross-origin-resource-policy:
- cross-origin
date:
- - Mon, 26 Aug 2024 09:57:40 GMT
+ - Tue, 04 Mar 2025 02:26:10 GMT
etag:
- - W/"8f34071e3f10c641931f33307d1319d34bae37f557ea31022a455502dae9ebc2"
+ - W/"0f53b56eda413b90fc6365dd4848831171968adfbf5b440c8da07b5866a97d67"
expires:
- - Mon, 26 Aug 2024 10:02:40 GMT
+ - Tue, 04 Mar 2025 02:31:10 GMT
source-age:
- - '173'
+ - '32'
strict-transport-security:
- max-age=31536000
vary:
@@ -97,19 +103,19 @@ interactions:
x-cache:
- HIT
x-cache-hits:
- - '0'
+ - '1'
x-content-type-options:
- nosniff
x-fastly-request-id:
- - cf82faf712838c664ac184219cdbe80b1f194997
+ - 86dc7a904d0aa1029f72c552c5881cf77f89b760
x-frame-options:
- deny
x-github-request-id:
- - 8060:3C8180:13D484:1818B3:66CC1340
+ - C72E:7AC17:334F663:3AA2722:67C62776
x-served-by:
- - cache-tyo11950-TYO
+ - cache-sin-wsss1830050-SIN
x-timer:
- - S1724666260.147059,VS0,VE1
+ - S1741055170.027308,VS0,VE1
x-xss-protection:
- 1; mode=block
status:
@@ -130,13 +136,13 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions?$top=1&$orderby=name%20desc&api-version=2024-07-01
response:
body:
- string: "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\"\
- ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\
+ string: "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\"\
+ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\
\r\n }\r\n]"
headers:
cache-control:
@@ -146,7 +152,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:40 GMT
+ - Tue, 04 Mar 2025 02:26:10 GMT
expires:
- '-1'
pragma:
@@ -158,11 +164,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15994,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43994
+ - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43999
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 0638A0F55DAA46BFADD79A41E44FB842 Ref B: TYO201100113027 Ref C: 2024-08-26T09:57:40Z'
+ - 'Ref A: 7FE58A9599CB479EA98D0631E729AB8A Ref B: SEL221051504039 Ref C: 2025-03-04T02:26:10Z'
status:
code: 200
message: OK
@@ -181,9 +187,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2655.240810?api-version=2024-07-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.3207.250210?api-version=2024-07-01
response:
body:
string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \
@@ -199,19 +205,19 @@ interactions:
,\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"\
name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n \
\ }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\
- ,\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n \
- \ },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\
- \n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\
+ ,\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n\
+ \ \"goLiveDate\": \"2025-02-13T00:00:00+00:00\"\r\n },\r\n \"location\"\
+ : \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\
\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1184'
+ - '1232'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:42 GMT
+ - Tue, 04 Mar 2025 02:26:10 GMT
expires:
- '-1'
pragma:
@@ -223,11 +229,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMImageFromLocation3Min;12995,Microsoft.Compute/GetVMImageFromLocation30Min;73995
+ - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: AF209C5281B04D9EA743E339932AAAF9 Ref B: TYO201151001062 Ref C: 2024-08-26T09:57:41Z'
+ - 'Ref A: B10D788DB8F242DB9664AE6FD176A45D Ref B: SEL221051504047 Ref C: 2025-03-04T02:26:10Z'
status:
code: 200
message: OK
@@ -246,12 +252,12 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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
@@ -259,8 +265,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
@@ -268,8 +275,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
@@ -277,8 +285,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
@@ -286,8 +295,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
@@ -295,32 +305,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
@@ -335,13 +398,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
@@ -351,7 +414,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -361,7 +424,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -371,7 +434,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -380,20 +443,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
@@ -403,7 +466,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -413,7 +476,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -422,7 +485,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -431,7 +494,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -440,7 +503,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -449,7 +512,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -458,7 +521,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -467,7 +530,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -477,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"],"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
@@ -486,7 +549,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -495,8 +558,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
@@ -505,8 +568,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
@@ -515,8 +578,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
@@ -525,8 +588,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
@@ -536,7 +599,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -546,7 +609,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -555,7 +618,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
@@ -565,7 +628,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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
@@ -575,7 +638,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
@@ -584,15 +647,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
@@ -601,7 +664,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -610,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"],"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
@@ -620,16 +683,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
@@ -638,8 +701,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
@@ -648,14 +711,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
@@ -665,7 +729,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US 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
@@ -675,9 +739,21 @@ 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-09-01-preview","2024-07-01","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-09-01-preview","2024-07-01","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":"networkSecurityPerimeters","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
+ South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland
+ West","East Asia","South Africa North","UK South","South India","Australia
+ Southeast","France South","West US 2","Sweden Central","Japan West","Norway
+ 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","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-06-01-preview","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":"2024-07-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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
@@ -687,8 +763,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":["2024-07-01","2024-06-01-preview","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
@@ -698,8 +774,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":["2024-07-01","2024-06-01-preview","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
@@ -709,8 +785,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-09-01-preview","2024-07-01","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
@@ -720,8 +796,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-09-01-preview","2024-07-01","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
@@ -731,8 +807,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
@@ -742,8 +818,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-09-01-preview","2024-07-01","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
@@ -753,17 +829,34 @@ 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-09-01-preview","2024-07-01","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","West Central US","East US 2 EUAP","Central
+ US EUAP"],"apiVersions":["2024-07-01","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","West Central US","East US 2 EUAP","Central
+ US EUAP"],"apiVersions":["2024-07-01","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-07-01","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-07-01","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
@@ -773,8 +866,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":["2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-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
@@ -782,7 +875,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-07-01","2024-05-01","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
@@ -790,7 +883,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-07-01","2024-05-01","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
@@ -800,8 +893,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-07-01","2024-05-01","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
@@ -812,8 +905,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-07-01","2024-05-01","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-07-01","2024-05-01","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-07-01","2024-05-01","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-07-01","2024-05-01","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
@@ -823,8 +917,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-07-01","2024-05-01","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
@@ -835,11 +929,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-07-01","2024-05-01","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-07-01","2024-05-01","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
@@ -849,13 +943,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
@@ -865,7 +959,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -874,7 +968,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -883,14 +977,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
@@ -900,7 +995,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -909,20 +1004,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
@@ -932,7 +1027,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -941,7 +1036,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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
@@ -950,20 +1045,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
@@ -973,13 +1068,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
@@ -989,7 +1084,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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
@@ -999,13 +1094,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
@@ -1015,7 +1110,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
@@ -1023,8 +1118,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
@@ -1033,14 +1128,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
@@ -1050,7 +1145,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1060,7 +1155,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1070,7 +1165,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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
@@ -1080,7 +1175,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1090,7 +1185,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1100,7 +1195,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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
@@ -1109,20 +1204,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
@@ -1132,7 +1227,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1142,7 +1237,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1152,7 +1247,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1162,8 +1257,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
@@ -1172,7 +1267,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1181,7 +1276,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1190,7 +1285,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1199,7 +1294,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","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
@@ -1208,7 +1303,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","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
@@ -1217,7 +1312,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1226,7 +1321,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1235,7 +1330,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1244,7 +1339,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
@@ -1253,7 +1348,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
@@ -1262,7 +1357,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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
@@ -1271,7 +1366,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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
@@ -1280,7 +1375,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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
@@ -1289,7 +1384,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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
@@ -1298,7 +1393,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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
@@ -1307,7 +1402,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1316,7 +1411,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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
@@ -1325,7 +1420,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -1334,7 +1429,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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
@@ -1343,7 +1438,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1352,7 +1447,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1361,7 +1456,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1370,7 +1465,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1379,7 +1474,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1388,7 +1483,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -1398,13 +1493,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
@@ -1414,7 +1509,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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
@@ -1423,7 +1518,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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
@@ -1432,8 +1527,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
@@ -1443,7 +1538,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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
@@ -1452,7 +1547,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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
@@ -1462,7 +1557,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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
@@ -1471,7 +1566,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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
@@ -1480,7 +1575,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -1489,7 +1584,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -1498,7 +1593,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -1507,7 +1602,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -1516,7 +1611,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -1540,31 +1635,19 @@ 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,
- 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
- 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
- North","Germany West Central","Switzerland West","East Asia","South Africa
- North","UK South","South India","Australia Southeast","France South","West
- US 2","Sweden Central","Japan West","Norway 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"],"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 STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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":"networkWatchers/lenses","locations":["Central
+ US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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'
+ - '205778'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:44 GMT
+ - Tue, 04 Mar 2025 02:26:13 GMT
expires:
- '-1'
pragma:
@@ -1578,7 +1661,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 1AE0CB58366643F1BE7FAF6FB723BD6F Ref B: TYO201151003054 Ref C: 2024-08-26T09:57:42Z'
+ - 'Ref A: C8626DA363974209B7340280253B7B72 Ref B: SEL221051801023 Ref C: 2025-03-04T02:26:11Z'
status:
code: 200
message: OK
@@ -1597,9 +1680,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/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''
@@ -1613,7 +1696,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:45 GMT
+ - Tue, 04 Mar 2025 02:26:14 GMT
expires:
- '-1'
pragma:
@@ -1627,7 +1710,7 @@ interactions:
x-ms-failure-cause:
- gateway
x-msedge-ref:
- - 'Ref A: 6054BDE83176491D8AEA32AD072E5BB2 Ref B: TYO201100115053 Ref C: 2024-08-26T09:57:45Z'
+ - 'Ref A: 71D6D7B73E654DF680FA116C017E3244 Ref B: SEL221051504049 Ref C: 2025-03-04T02:26:14Z'
status:
code: 404
message: Not Found
@@ -1650,28 +1733,34 @@ interactions:
,\n \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\"\
: {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"\
type\": \"object\",\n \"value\": {\n \"Linux\": {\n \"\
- CentOS85Gen2\": {\n \"publisher\": \"OpenLogic\",\n \
- \ \"offer\": \"CentOS\",\n \"sku\": \"8_5-gen2\",\n \
- \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \
- \ },\n \"Debian11\": {\n \"publisher\": \"Debian\"\
- ,\n \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\"\
- ,\n \"version\": \"latest\",\n \"architecture\": \"\
- x64\"\n },\n \"FlatcarLinuxFreeGen2\": {\n \"\
- publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\"\
- ,\n \"sku\": \"stable-gen2\",\n \"version\": \"latest\"\
- ,\n \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\"\
- : {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\"\
- ,\n \"sku\": \"gen2\",\n \"version\": \"latest\",\n\
- \ \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\"\
- : {\n \"publisher\": \"RedHat\",\n \"offer\": \"\
- RHEL\",\n \"sku\": \"8-lvm-gen2\",\n \"version\": \
- \ \"latest\",\n \"architecture\": \"x64\"\n },\n \
- \ \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n \
- \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \
- \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \
- \ },\n \"Ubuntu2204\": {\n \"publisher\": \"\
- Canonical\",\n \"offer\": \"0001-com-ubuntu-server-jammy\",\n\
- \ \"sku\": \"22_04-lts-gen2\",\n \"version\": \"latest\"\
+ CentOS85Gen2\": {\n \"publisher\": \"OpenLogic\",\n \
+ \ \"offer\": \"CentOS\",\n \"sku\": \"8_5-gen2\",\n \
+ \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \
+ \ },\n \"Debian11\": {\n \"publisher\": \"Debian\"\
+ ,\n \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\"\
+ ,\n \"version\": \"latest\",\n \"architecture\": \"\
+ x64\"\n },\n \"OpenSuseLeap154Gen2\": {\n \"\
+ publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n \
+ \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \
+ \ \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\"\
+ : {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\"\
+ ,\n \"sku\": \"8-lvm-gen2\",\n \"version\": \"latest\"\
+ ,\n \"architecture\": \"x64\"\n },\n \"SuseSles15SP5\"\
+ : {\n \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp5\"\
+ ,\n \"sku\": \"gen2\",\n \"version\": \"latest\",\n\
+ \ \"architecture\": \"x64\"\n },\n \"Ubuntu2204\"\
+ : {\n \"publisher\": \"Canonical\",\n \"offer\": \"\
+ 0001-com-ubuntu-server-jammy\",\n \"sku\": \"22_04-lts-gen2\",\n\
+ \ \"version\": \"latest\",\n \"architecture\": \"x64\"\
+ \n },\n \"Ubuntu2404\": {\n \"publisher\": \"\
+ Canonical\",\n \"offer\": \"ubuntu-24_04-lts\",\n \"\
+ sku\": \"server\",\n \"version\": \"latest\",\n \"architecture\"\
+ : \"x64\"\n },\n \"Ubuntu2404Pro\": {\n \"publisher\"\
+ : \"Canonical\",\n \"offer\": \"ubuntu-24_04-lts\",\n \
+ \ \"sku\": \"ubuntu-pro\",\n \"version\": \"latest\",\n \
+ \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\"\
+ : {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\"\
+ ,\n \"sku\": \"stable-gen2\",\n \"version\": \"latest\"\
,\n \"architecture\": \"x64\"\n }\n },\n \
\ \"Windows\": {\n \"Win2022Datacenter\": {\n \"publisher\"\
: \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n\
@@ -1705,7 +1794,7 @@ interactions:
connection:
- keep-alive
content-length:
- - '3384'
+ - '3790'
content-security-policy:
- default-src 'none'; style-src 'unsafe-inline'; sandbox
content-type:
@@ -1713,13 +1802,13 @@ interactions:
cross-origin-resource-policy:
- cross-origin
date:
- - Mon, 26 Aug 2024 09:57:45 GMT
+ - Tue, 04 Mar 2025 02:26:15 GMT
etag:
- - W/"8f34071e3f10c641931f33307d1319d34bae37f557ea31022a455502dae9ebc2"
+ - W/"0f53b56eda413b90fc6365dd4848831171968adfbf5b440c8da07b5866a97d67"
expires:
- - Mon, 26 Aug 2024 10:02:45 GMT
+ - Tue, 04 Mar 2025 02:31:15 GMT
source-age:
- - '179'
+ - '37'
strict-transport-security:
- max-age=31536000
vary:
@@ -1733,15 +1822,15 @@ interactions:
x-content-type-options:
- nosniff
x-fastly-request-id:
- - 6d92e514c2a635477e1dce8c5573c551ed4f0c62
+ - cf4723e0abb3d66d08264a388c409044d423fb10
x-frame-options:
- deny
x-github-request-id:
- - 8060:3C8180:13D484:1818B3:66CC1340
+ - C72E:7AC17:334F663:3AA2722:67C62776
x-served-by:
- - cache-tyo11947-TYO
+ - cache-sin-wsss1830055-SIN
x-timer:
- - S1724666266.628182,VS0,VE1
+ - S1741055175.094845,VS0,VE1
x-xss-protection:
- 1; mode=block
status:
@@ -1762,13 +1851,13 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions?$top=1&$orderby=name%20desc&api-version=2024-07-01
response:
body:
- string: "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\"\
- ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\
+ string: "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\"\
+ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\
\r\n }\r\n]"
headers:
cache-control:
@@ -1778,7 +1867,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:45 GMT
+ - Tue, 04 Mar 2025 02:26:14 GMT
expires:
- '-1'
pragma:
@@ -1790,11 +1879,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15992,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43992
+ - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15994,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43994
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 55B85AB7703E430582CD4A50899CDCBD Ref B: TYO201100114035 Ref C: 2024-08-26T09:57:46Z'
+ - 'Ref A: 4F4FFD8749B54E73AE5A4288E6E4331D Ref B: SEL221051504021 Ref C: 2025-03-04T02:26:15Z'
status:
code: 200
message: OK
@@ -1813,9 +1902,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2655.240810?api-version=2024-07-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.3207.250210?api-version=2024-07-01
response:
body:
string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \
@@ -1831,19 +1920,19 @@ interactions:
,\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"\
name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n \
\ }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\
- ,\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n \
- \ },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\
- \n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\
+ ,\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n\
+ \ \"goLiveDate\": \"2025-02-13T00:00:00+00:00\"\r\n },\r\n \"location\"\
+ : \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\
\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1184'
+ - '1232'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:46 GMT
+ - Tue, 04 Mar 2025 02:26:15 GMT
expires:
- '-1'
pragma:
@@ -1855,11 +1944,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMImageFromLocation3Min;12993,Microsoft.Compute/GetVMImageFromLocation30Min;73993
+ - Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73994
x-ms-ratelimit-remaining-subscription-global-reads:
- '3748'
x-msedge-ref:
- - 'Ref A: E4C80870669846B295D55242CA761D58 Ref B: TYO201151004029 Ref C: 2024-08-26T09:57:47Z'
+ - 'Ref A: 4F98B595E8404D908081458E0BE54FF9 Ref B: SEL221051503017 Ref C: 2025-03-04T02:26:15Z'
status:
code: 200
message: OK
@@ -1878,13 +1967,13 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions?$top=1&$orderby=name%20desc&api-version=2024-07-01
response:
body:
- string: "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\"\
- ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\
+ string: "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\"\
+ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\
\r\n }\r\n]"
headers:
cache-control:
@@ -1894,7 +1983,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:48 GMT
+ - Tue, 04 Mar 2025 02:26:16 GMT
expires:
- '-1'
pragma:
@@ -1908,9 +1997,9 @@ interactions:
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15991,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43991
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3747'
+ - '3749'
x-msedge-ref:
- - 'Ref A: E6DB01696D4D4608A17FA2C9A121C077 Ref B: TYO201151003029 Ref C: 2024-08-26T09:57:47Z'
+ - 'Ref A: F5533E93871B439C9D4BEB7A143DE0D4 Ref B: SEL221051802017 Ref C: 2025-03-04T02:26:16Z'
status:
code: 200
message: OK
@@ -1929,9 +2018,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2655.240810?api-version=2024-07-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.3207.250210?api-version=2024-07-01
response:
body:
string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \
@@ -1947,19 +2036,19 @@ interactions:
,\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"\
name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n \
\ }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\
- ,\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n \
- \ },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\
- \n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\
+ ,\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n\
+ \ \"goLiveDate\": \"2025-02-13T00:00:00+00:00\"\r\n },\r\n \"location\"\
+ : \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\
\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1184'
+ - '1232'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:48 GMT
+ - Tue, 04 Mar 2025 02:26:16 GMT
expires:
- '-1'
pragma:
@@ -1971,11 +2060,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMImageFromLocation3Min;12992,Microsoft.Compute/GetVMImageFromLocation30Min;73992
+ - Microsoft.Compute/GetVMImageFromLocation3Min;12991,Microsoft.Compute/GetVMImageFromLocation30Min;73991
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 47D185019118475C8C9A7DD82328DDD3 Ref B: TYO201151001042 Ref C: 2024-08-26T09:57:48Z'
+ - 'Ref A: 643AC5CEAECA4F3D9F03037737E3C231 Ref B: SEL221051801009 Ref C: 2025-03-04T02:26:17Z'
status:
code: 200
message: OK
@@ -1994,12 +2083,12 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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
@@ -2007,8 +2096,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
@@ -2016,8 +2106,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
@@ -2025,8 +2116,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
@@ -2034,8 +2126,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
@@ -2043,32 +2136,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
@@ -2083,13 +2229,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
@@ -2099,7 +2245,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2109,7 +2255,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2119,7 +2265,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2128,20 +2274,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
@@ -2151,7 +2297,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2161,7 +2307,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2170,7 +2316,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2179,7 +2325,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2188,7 +2334,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -2197,7 +2343,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -2206,7 +2352,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -2215,7 +2361,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2225,7 +2371,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2234,7 +2380,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2243,8 +2389,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
@@ -2253,8 +2399,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
@@ -2263,8 +2409,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
@@ -2273,8 +2419,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
@@ -2284,7 +2430,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -2294,7 +2440,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -2303,7 +2449,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
@@ -2313,7 +2459,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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
@@ -2323,7 +2469,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
@@ -2332,15 +2478,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
@@ -2349,7 +2495,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -2358,7 +2504,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","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
@@ -2368,16 +2514,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
@@ -2386,8 +2532,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
@@ -2396,14 +2542,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
@@ -2413,7 +2560,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US 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
@@ -2423,9 +2570,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-09-01-preview","2024-07-01","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-09-01-preview","2024-07-01","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":"networkSecurityPerimeters","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
@@ -2435,8 +2582,20 @@ 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":["2024-07-01","2024-06-01-preview","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":"2024-07-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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
+ South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland
+ West","East Asia","South Africa North","UK South","South India","Australia
+ Southeast","France South","West US 2","Sweden Central","Japan West","Norway
+ 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","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-06-01-preview","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
@@ -2446,8 +2605,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":["2024-07-01","2024-06-01-preview","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
@@ -2457,8 +2616,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-09-01-preview","2024-07-01","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
@@ -2468,8 +2627,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-09-01-preview","2024-07-01","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
@@ -2479,8 +2638,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
@@ -2490,8 +2649,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-09-01-preview","2024-07-01","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
@@ -2501,17 +2660,34 @@ 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-09-01-preview","2024-07-01","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","West Central US","East US 2 EUAP","Central
+ US EUAP"],"apiVersions":["2024-07-01","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","West Central US","East US 2 EUAP","Central
+ US EUAP"],"apiVersions":["2024-07-01","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-07-01","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-07-01","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
@@ -2521,8 +2697,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":["2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-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
@@ -2530,7 +2706,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-07-01","2024-05-01","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
@@ -2538,7 +2714,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-07-01","2024-05-01","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
@@ -2548,8 +2724,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-07-01","2024-05-01","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
@@ -2560,8 +2736,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-07-01","2024-05-01","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-07-01","2024-05-01","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-07-01","2024-05-01","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-07-01","2024-05-01","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
@@ -2571,8 +2748,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-07-01","2024-05-01","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
@@ -2583,11 +2760,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-07-01","2024-05-01","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-07-01","2024-05-01","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
@@ -2597,13 +2774,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
@@ -2613,7 +2790,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2622,7 +2799,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -2631,14 +2808,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
@@ -2648,7 +2826,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2657,20 +2835,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
@@ -2680,7 +2858,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -2689,7 +2867,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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
@@ -2698,20 +2876,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
@@ -2721,13 +2899,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
@@ -2737,7 +2915,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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
@@ -2747,13 +2925,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
@@ -2763,7 +2941,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
@@ -2771,8 +2949,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
@@ -2781,14 +2959,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
@@ -2798,7 +2976,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2808,7 +2986,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2818,7 +2996,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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
@@ -2828,7 +3006,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -2838,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","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2848,7 +3026,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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
@@ -2857,20 +3035,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
@@ -2880,7 +3058,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2890,7 +3068,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2900,7 +3078,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2910,8 +3088,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
@@ -2920,7 +3098,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2929,7 +3107,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2938,7 +3116,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2947,7 +3125,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","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
@@ -2956,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"],"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
@@ -2965,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","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2974,7 +3152,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2983,7 +3161,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -2992,7 +3170,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
@@ -3001,7 +3179,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
@@ -3010,7 +3188,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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
@@ -3019,7 +3197,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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
@@ -3028,7 +3206,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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
@@ -3037,7 +3215,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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
@@ -3046,7 +3224,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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
@@ -3055,7 +3233,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -3064,7 +3242,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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
@@ -3073,7 +3251,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -3082,7 +3260,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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
@@ -3091,7 +3269,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -3100,7 +3278,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -3109,7 +3287,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -3118,7 +3296,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -3127,7 +3305,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -3136,7 +3314,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -3146,13 +3324,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
@@ -3162,7 +3340,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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
@@ -3171,7 +3349,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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
@@ -3180,8 +3358,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
@@ -3191,7 +3369,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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
@@ -3200,7 +3378,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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
@@ -3210,7 +3388,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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
@@ -3219,7 +3397,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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
@@ -3228,7 +3406,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -3237,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"],"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
@@ -3246,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"],"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
@@ -3255,7 +3433,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -3264,7 +3442,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -3288,31 +3466,19 @@ 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,
- 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
- 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
- North","Germany West Central","Switzerland West","East Asia","South Africa
- North","UK South","South India","Australia Southeast","France South","West
- US 2","Sweden Central","Japan West","Norway 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"],"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 STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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":"networkWatchers/lenses","locations":["Central
+ US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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'
+ - '205778'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:50 GMT
+ - Tue, 04 Mar 2025 02:26:18 GMT
expires:
- '-1'
pragma:
@@ -3324,9 +3490,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3748'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 133DAC4A5AA44EBB871D1A6B1443E565 Ref B: TYO201100113023 Ref C: 2024-08-26T09:57:49Z'
+ - 'Ref A: A9D06A30B33A4E09B0E42225570BF5A8 Ref B: SEL221051805009 Ref C: 2025-03-04T02:26:17Z'
status:
code: 200
message: OK
@@ -3345,9 +3511,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2024-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2024-05-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/virtualNetworks/vnet1''
@@ -3361,7 +3527,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:50 GMT
+ - Tue, 04 Mar 2025 02:26:20 GMT
expires:
- '-1'
pragma:
@@ -3375,7 +3541,7 @@ interactions:
x-ms-failure-cause:
- gateway
x-msedge-ref:
- - 'Ref A: 6443AD8480BA42DBAA560968989BE0E3 Ref B: TYO201100114019 Ref C: 2024-08-26T09:57:51Z'
+ - 'Ref A: C2D4E8C09E5948578FAC86CAB7D0AD4C Ref B: SEL221051504033 Ref C: 2025-03-04T02:26:19Z'
status:
code: 404
message: Not Found
@@ -3427,15 +3593,15 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_gwwvijpOk7oiXFDykf24Y3z8Rr5OeWsI","name":"vm_deploy_gwwvijpOk7oiXFDykf24Y3z8Rr5OeWsI","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10835550571457094817","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-26T09:57:55.4673431Z","duration":"PT0.0003641S","correlationId":"01c23625-68ce-4dd9-a85c-0378f8064bb1","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus"]},{"resourceType":"networkSecurityGroups","locations":["eastus"]},{"resourceType":"publicIPAddresses","locations":["eastus"]},{"resourceType":"networkInterfaces","locations":["eastus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_MxnTwOC8x6tf9UWg5pc2AoyMvBZtZEkU","name":"vm_deploy_MxnTwOC8x6tf9UWg5pc2AoyMvBZtZEkU","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15397253521225201344","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-03-04T02:26:28.5812771Z","duration":"PT0.0001238S","correlationId":"b41e59eb-cd3d-4fbf-b16d-27818e07eb1b","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus"]},{"resourceType":"networkSecurityGroups","locations":["eastus"]},{"resourceType":"publicIPAddresses","locations":["eastus"]},{"resourceType":"networkInterfaces","locations":["eastus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_gwwvijpOk7oiXFDykf24Y3z8Rr5OeWsI/operationStatuses/08584769406119328517?api-version=2022-09-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_MxnTwOC8x6tf9UWg5pc2AoyMvBZtZEkU/operationStatuses/08584605517015345455?api-version=2022-09-01&t=638766519908651346&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=FkAUrXyzg5tGF8-RGSXLIquytD1B6bbnUzidEcw1qNug81Ak4bHiA7hhezKFPsi3mQb_PdTQs5WASncJdyFvpUdlYWnf2NaJ5M7qaNNga2X4N4swRc7NPeo3On8uiVS-jh5vo3_FHDiG3bcSOGXJPkcA7PBGUY3gYDcwrs3enHczkbHDIqlX4DMVrhVassgHLuHUXK9IwINoo3uol30ZGDTFI63hntcw41QJS1nLR-FxU1NFEFs2Rpplc3Z4s1cbOEpslWacnVp3M9O0kLFFZe4yRSXM0HotkHjtPLxevTsXb1PMLgJGF5zE2ASzdDFx3vxFc9QXHE011bVoLkImcw&h=nTCZHnAuiHNmAPRuiJ1e_yUAUz-FUXHJLlmFznZre5s
cache-control:
- no-cache
content-length:
@@ -3443,7 +3609,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:56 GMT
+ - Tue, 04 Mar 2025 02:26:30 GMT
expires:
- '-1'
pragma:
@@ -3455,13 +3621,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: F8800BB4DA1949AEA67093BFFC2FF7F2 Ref B: TYO201151004025 Ref C: 2024-08-26T09:57:51Z'
+ - 'Ref A: 3771A620941A401A86CC64D020F99134 Ref B: SEL221051504039 Ref C: 2025-03-04T02:26:20Z'
status:
code: 201
message: Created
@@ -3480,9 +3646,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769406119328517?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584605517015345455?api-version=2022-09-01&t=638766519908651346&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=FkAUrXyzg5tGF8-RGSXLIquytD1B6bbnUzidEcw1qNug81Ak4bHiA7hhezKFPsi3mQb_PdTQs5WASncJdyFvpUdlYWnf2NaJ5M7qaNNga2X4N4swRc7NPeo3On8uiVS-jh5vo3_FHDiG3bcSOGXJPkcA7PBGUY3gYDcwrs3enHczkbHDIqlX4DMVrhVassgHLuHUXK9IwINoo3uol30ZGDTFI63hntcw41QJS1nLR-FxU1NFEFs2Rpplc3Z4s1cbOEpslWacnVp3M9O0kLFFZe4yRSXM0HotkHjtPLxevTsXb1PMLgJGF5zE2ASzdDFx3vxFc9QXHE011bVoLkImcw&h=nTCZHnAuiHNmAPRuiJ1e_yUAUz-FUXHJLlmFznZre5s
response:
body:
string: '{"status":"Running"}'
@@ -3494,7 +3660,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:56 GMT
+ - Tue, 04 Mar 2025 02:26:31 GMT
expires:
- '-1'
pragma:
@@ -3508,7 +3674,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 98AF3418592742E49B9FFE588545CF65 Ref B: TYO201151004025 Ref C: 2024-08-26T09:57:56Z'
+ - 'Ref A: 90E28759441841A9BDA0259E5CD0B5AE Ref B: SEL221051504039 Ref C: 2025-03-04T02:26:30Z'
status:
code: 200
message: OK
@@ -3527,9 +3693,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769406119328517?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584605517015345455?api-version=2022-09-01&t=638766519908651346&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=FkAUrXyzg5tGF8-RGSXLIquytD1B6bbnUzidEcw1qNug81Ak4bHiA7hhezKFPsi3mQb_PdTQs5WASncJdyFvpUdlYWnf2NaJ5M7qaNNga2X4N4swRc7NPeo3On8uiVS-jh5vo3_FHDiG3bcSOGXJPkcA7PBGUY3gYDcwrs3enHczkbHDIqlX4DMVrhVassgHLuHUXK9IwINoo3uol30ZGDTFI63hntcw41QJS1nLR-FxU1NFEFs2Rpplc3Z4s1cbOEpslWacnVp3M9O0kLFFZe4yRSXM0HotkHjtPLxevTsXb1PMLgJGF5zE2ASzdDFx3vxFc9QXHE011bVoLkImcw&h=nTCZHnAuiHNmAPRuiJ1e_yUAUz-FUXHJLlmFznZre5s
response:
body:
string: '{"status":"Running"}'
@@ -3541,7 +3707,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:58:27 GMT
+ - Tue, 04 Mar 2025 02:27:02 GMT
expires:
- '-1'
pragma:
@@ -3555,7 +3721,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: B179C0ACE749473DBE34F3217C42F8DE Ref B: TYO201151004025 Ref C: 2024-08-26T09:58:27Z'
+ - 'Ref A: 80670A6B6BBE4F23B0B96DE58C2FA60A Ref B: SEL221051504039 Ref C: 2025-03-04T02:27:01Z'
status:
code: 200
message: OK
@@ -3574,9 +3740,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769406119328517?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584605517015345455?api-version=2022-09-01&t=638766519908651346&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=FkAUrXyzg5tGF8-RGSXLIquytD1B6bbnUzidEcw1qNug81Ak4bHiA7hhezKFPsi3mQb_PdTQs5WASncJdyFvpUdlYWnf2NaJ5M7qaNNga2X4N4swRc7NPeo3On8uiVS-jh5vo3_FHDiG3bcSOGXJPkcA7PBGUY3gYDcwrs3enHczkbHDIqlX4DMVrhVassgHLuHUXK9IwINoo3uol30ZGDTFI63hntcw41QJS1nLR-FxU1NFEFs2Rpplc3Z4s1cbOEpslWacnVp3M9O0kLFFZe4yRSXM0HotkHjtPLxevTsXb1PMLgJGF5zE2ASzdDFx3vxFc9QXHE011bVoLkImcw&h=nTCZHnAuiHNmAPRuiJ1e_yUAUz-FUXHJLlmFznZre5s
response:
body:
string: '{"status":"Running"}'
@@ -3588,7 +3754,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:58:57 GMT
+ - Tue, 04 Mar 2025 02:27:33 GMT
expires:
- '-1'
pragma:
@@ -3602,7 +3768,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: A7BEB62AC5E043879046842D46D68333 Ref B: TYO201151004025 Ref C: 2024-08-26T09:58:57Z'
+ - 'Ref A: 0089081C8E754809A09DAB1BD9629C5D Ref B: SEL221051504039 Ref C: 2025-03-04T02:27:32Z'
status:
code: 200
message: OK
@@ -3621,9 +3787,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769406119328517?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584605517015345455?api-version=2022-09-01&t=638766519908651346&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=FkAUrXyzg5tGF8-RGSXLIquytD1B6bbnUzidEcw1qNug81Ak4bHiA7hhezKFPsi3mQb_PdTQs5WASncJdyFvpUdlYWnf2NaJ5M7qaNNga2X4N4swRc7NPeo3On8uiVS-jh5vo3_FHDiG3bcSOGXJPkcA7PBGUY3gYDcwrs3enHczkbHDIqlX4DMVrhVassgHLuHUXK9IwINoo3uol30ZGDTFI63hntcw41QJS1nLR-FxU1NFEFs2Rpplc3Z4s1cbOEpslWacnVp3M9O0kLFFZe4yRSXM0HotkHjtPLxevTsXb1PMLgJGF5zE2ASzdDFx3vxFc9QXHE011bVoLkImcw&h=nTCZHnAuiHNmAPRuiJ1e_yUAUz-FUXHJLlmFznZre5s
response:
body:
string: '{"status":"Succeeded"}'
@@ -3635,7 +3801,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:28 GMT
+ - Tue, 04 Mar 2025 02:28:03 GMT
expires:
- '-1'
pragma:
@@ -3647,9 +3813,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3748'
x-msedge-ref:
- - 'Ref A: 2A6523E294D84A54A0A9977BD9855458 Ref B: TYO201151004025 Ref C: 2024-08-26T09:59:28Z'
+ - 'Ref A: 4CD10ED6D2FD4A628C5BD081DB63CA00 Ref B: SEL221051504039 Ref C: 2025-03-04T02:28:03Z'
status:
code: 200
message: OK
@@ -3668,12 +3834,12 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_gwwvijpOk7oiXFDykf24Y3z8Rr5OeWsI","name":"vm_deploy_gwwvijpOk7oiXFDykf24Y3z8Rr5OeWsI","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10835550571457094817","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-26T09:59:10.0330871Z","duration":"PT1M14.5661081S","correlationId":"01c23625-68ce-4dd9-a85c-0378f8064bb1","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus"]},{"resourceType":"networkSecurityGroups","locations":["eastus"]},{"resourceType":"publicIPAddresses","locations":["eastus"]},{"resourceType":"networkInterfaces","locations":["eastus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_MxnTwOC8x6tf9UWg5pc2AoyMvBZtZEkU","name":"vm_deploy_MxnTwOC8x6tf9UWg5pc2AoyMvBZtZEkU","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15397253521225201344","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-03-04T02:27:52.0078608Z","duration":"PT1M23.4267075S","correlationId":"b41e59eb-cd3d-4fbf-b16d-27818e07eb1b","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus"]},{"resourceType":"networkSecurityGroups","locations":["eastus"]},{"resourceType":"publicIPAddresses","locations":["eastus"]},{"resourceType":"networkInterfaces","locations":["eastus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1"}]}}'
headers:
cache-control:
- no-cache
@@ -3682,7 +3848,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:29 GMT
+ - Tue, 04 Mar 2025 02:28:04 GMT
expires:
- '-1'
pragma:
@@ -3694,9 +3860,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3748'
x-msedge-ref:
- - 'Ref A: DB51594961B14FAD9758808D6E897FD0 Ref B: TYO201151004025 Ref C: 2024-08-26T09:59:28Z'
+ - 'Ref A: E2603B5D6CC140EE8A89A3AA16936DA8 Ref B: SEL221051504039 Ref C: 2025-03-04T02:28:04Z'
status:
code: 200
message: OK
@@ -3715,7 +3881,7 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2024-07-01
response:
@@ -3724,16 +3890,16 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"0fe721bf-cec2-4711-98e6-3c11a5b5741e\"\
+ : \"Succeeded\",\r\n \"vmId\": \"949487e5-bfff-4d4f-9b6e-7797132f2ae6\"\
,\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"\
publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\"\
,\r\n \"sku\": \"2022-datacenter-g2\",\r\n \"version\": \"latest\"\
- ,\r\n \"exactVersion\": \"20348.2655.240810\"\r\n },\r\n \
+ ,\r\n \"exactVersion\": \"20348.3207.250210\"\r\n },\r\n \
\ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"\
- vm1_OsDisk_1_99ecaeddf080468eae8b06ad6cadac72\",\r\n \"createOption\"\
+ vm1_OsDisk_1_7dc8b29c93104bca8c6b5c83ff2d1072\",\r\n \"createOption\"\
: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\"\
: {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_99ecaeddf080468eae8b06ad6cadac72\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_7dc8b29c93104bca8c6b5c83ff2d1072\"\
\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\
: 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\"\
: \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"\
@@ -3752,20 +3918,20 @@ interactions:
\ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\"\
,\r\n \"level\": \"Warning\",\r\n \"displayStatus\"\
: \"Not Ready\",\r\n \"message\": \"VM status blob is found but\
- \ not yet populated.\",\r\n \"time\": \"2024-08-26T09:59:30+00:00\"\
+ \ not yet populated.\",\r\n \"time\": \"2025-03-04T02:28:05+00:00\"\
\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n \
- \ {\r\n \"name\": \"vm1_OsDisk_1_99ecaeddf080468eae8b06ad6cadac72\"\
+ \ {\r\n \"name\": \"vm1_OsDisk_1_7dc8b29c93104bca8c6b5c83ff2d1072\"\
,\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:58:10.5748833+00:00\"\r\n }\r\
+ \ \"time\": \"2025-03-04T02:26:49.6385625+00:00\"\r\n }\r\
\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V2\"\
,\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\
,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\
- \ succeeded\",\r\n \"time\": \"2024-08-26T09:59:06.7002383+00:00\"\
+ \ succeeded\",\r\n \"time\": \"2025-03-04T02:27:48.7480459+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:58:05.8717269+00:00\"\
+ \r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-03-04T02:26:45.9510455+00:00\"\
\r\n },\r\n \"etag\": \"\\\"2\\\"\"\r\n}"
headers:
cache-control:
@@ -3775,7 +3941,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:30 GMT
+ - Tue, 04 Mar 2025 02:28:05 GMT
expires:
- '-1'
pragma:
@@ -3786,12 +3952,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;23979,Microsoft.Compute/LowCostGetResource;33
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23991,Microsoft.Compute/LowCostGetResource;33
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3747'
x-msedge-ref:
- - 'Ref A: 42B166BE158240A9AC2C21938DA9839F Ref B: TYO201100117033 Ref C: 2024-08-26T09:59:30Z'
+ - 'Ref A: 88EBA8D353484CEA9B1192C7945DE6B5 Ref B: SEL221051504039 Ref C: 2025-03-04T02:28:05Z'
status:
code: 200
message: ''
@@ -3810,12 +3978,12 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2022-01-01
response:
body:
- string: '{"name":"vm1VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","etag":"W/\"40cf4d5f-2f7a-478c-8792-3b590499dcd3\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"00dc1672-a380-4b94-af77-ccaee3f965d6","ipConfigurations":[{"name":"ipconfigvm1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1","etag":"W/\"40cf4d5f-2f7a-478c-8792-3b590499dcd3\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"mfgzth2pwm2edjcquasmgurqpe.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-4D-FA-B3","enableAcceleratedNetworking":false,"vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":true,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"eastus","kind":"Regular"}'
+ string: '{"name":"vm1VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","etag":"W/\"4ba21078-1e62-4935-822d-39abf5a0d91b\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"80ae81a9-80ae-4a83-b444-eb54c2aa7a63","ipConfigurations":[{"name":"ipconfigvm1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1","etag":"W/\"4ba21078-1e62-4935-822d-39abf5a0d91b\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"3eb22trmttjevmljzkqptqhaza.bx.internal.cloudapp.net"},"macAddress":"60-45-BD-EB-3D-40","enableAcceleratedNetworking":false,"vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":true,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"eastus","kind":"Regular"}'
headers:
cache-control:
- no-cache
@@ -3824,9 +3992,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:30 GMT
+ - Tue, 04 Mar 2025 02:28:05 GMT
etag:
- - W/"40cf4d5f-2f7a-478c-8792-3b590499dcd3"
+ - W/"4ba21078-1e62-4935-822d-39abf5a0d91b"
expires:
- '-1'
pragma:
@@ -3838,11 +4006,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 2c37ce14-4240-40d5-9acf-af4da43b6ad0
+ - d6d88e73-3673-4350-8a67-75f5b7704f43
x-ms-ratelimit-remaining-subscription-global-reads:
- '3748'
x-msedge-ref:
- - 'Ref A: E2B36FD4A03141E79B3F390BB1C4F537 Ref B: TYO201151003052 Ref C: 2024-08-26T09:59:30Z'
+ - 'Ref A: 7807991BA2CA4B90AD345A6E040ABE46 Ref B: SEL221051503011 Ref C: 2025-03-04T02:28:05Z'
status:
code: 200
message: OK
@@ -3861,23 +4029,23 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2022-01-01
response:
body:
- string: '{"name":"vm1PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","etag":"W/\"596a8be7-f469-4e74-a0e2-a62fcfe27667\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"71c257f7-f2e0-4f00-9a65-c27d371357da","ipAddress":"40.87.62.24","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}'
+ string: '{"name":"vm1PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","etag":"W/\"3b025f55-7ad7-4c62-a9b1-d87fa5b7f5dd\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"e30a0e67-8e31-4c1c-85b4-31dd9736fd8d","ipAddress":"172.190.24.39","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}'
headers:
cache-control:
- no-cache
content-length:
- - '769'
+ - '771'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:31 GMT
+ - Tue, 04 Mar 2025 02:28:07 GMT
etag:
- - W/"596a8be7-f469-4e74-a0e2-a62fcfe27667"
+ - W/"3b025f55-7ad7-4c62-a9b1-d87fa5b7f5dd"
expires:
- '-1'
pragma:
@@ -3889,11 +4057,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 1f5d7d02-4bd7-4474-935d-c9460ae2618f
+ - 5f178be6-57f1-4cb6-a1fa-1eb95ba41c03
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3746'
x-msedge-ref:
- - 'Ref A: 7998506A2EB844BBB9641D3F8ADBBA9B Ref B: TYO201151004023 Ref C: 2024-08-26T09:59:31Z'
+ - 'Ref A: FF9D32A5390D404880AED8D9507D4099 Ref B: SEL221051804035 Ref C: 2025-03-04T02:28:06Z'
status:
code: 200
message: OK
@@ -3911,23 +4079,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.70.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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-01-01
response:
body:
- string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"29ae2c37-e449-4f97-9841-050ef2eb54f8\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGF2WCDHCFVNONHDELTCJPFXHCFTT5XGL2UN4FVPOI4IAZFFU7PLJ7SH575QA2TS3XT/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}'
+ string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"65f17e11-f99f-499a-a10f-90241e7d01e5\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGYCWA53ELECMXQ5EXUG4FKFA4WETIAN6HYPXGTJ3F6H6PCKFKVLYXJMYWNOXPW33GA/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}'
headers:
cache-control:
- no-cache
content-length:
- - '750'
+ - '719'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:32 GMT
+ - Tue, 04 Mar 2025 02:28:09 GMT
etag:
- - W/"29ae2c37-e449-4f97-9841-050ef2eb54f8"
+ - W/"65f17e11-f99f-499a-a10f-90241e7d01e5"
expires:
- '-1'
pragma:
@@ -3939,11 +4107,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - b62508ea-0274-409f-a7e6-f7cae7f97e80
+ - c92b2964-3527-4f34-bd07-849549a770ed
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3747'
x-msedge-ref:
- - 'Ref A: 0BF0D780BBA040DAABC8883474C6DD89 Ref B: TYO201151001011 Ref C: 2024-08-26T09:59:32Z'
+ - 'Ref A: E5C09C4A791D4CE7B11659413074DA2B Ref B: SEL221051804021 Ref C: 2025-03-04T02:28:08Z'
status:
code: 200
message: OK
@@ -3968,25 +4136,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.70.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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-01-01
response:
body:
- string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"87a423ef-ea27-42c7-8c5a-b002f3a9e034\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}'
+ string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"e38bb684-4447-48bc-ab8d-74db2fb71894\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/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/eastus/operations/7bf989af-cbcd-4499-9d88-07a578d026ae?api-version=2024-01-01&t=638602631735408573&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=Mbah_gb2HVqT6QjG-_PocSiTZeflHw2fS0iWXsM6OohT2A2TsGiG0z51rrIMhyG4m4l-mFehN3QCa02YNPTE3BLmhn8SEG_smZXawPmOIBtk2ggzYqwqJDcx-r_4aPegTDveEjm_3hXWXsrsWvL6zCIN6Jb2qHtB_54U8HQFYW8l30SRQJMYQNGdexiGu1i3LlSDTjQYC9jq9VNn9WKzZrDHC98zsPfNnWByCoGfZjduNBjhmKbBDQEBySzJ-jkA0xg6zcUJkEh4FQmQi13OMGac5qpaI1yvGt9OhAichi-v7mIM-NfYuKzVDdK2MoJ1kuMVafDXrWsJp6uxElu1eA&h=0u9Hu369mHVjfIOhh2Dyi6V6gKwYLZSrr2TLr-nIQgI
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e2172637-bd9f-454f-a2cd-3e476e298728?api-version=2024-01-01&t=638766520908313868&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=SCkEIQ6cR_ftIaOp89BP-gdpbWhP2GxoFIpSbaDVlk42AETW4daE8R0qv4aXMcOS6n_NOCePYxxrpzUz3r4fsE9DPh5XQIdUMAWWAPCEqos2xCE9h-nJVVpsdk123nvZtjOZcjtfIBdypGO7nZJ1IqzBOxDLbLtsMPakvy68MRhWGf_0MsDJx8Nk7aFaL_sVbrBotDMHC-bXkV7z_mAEAJCgiiPiRRkd10vXgR7mD0YFdSTS2n_cf4cBGSxgOzlSzhgcJXoEsK8irSI9eGuV2hBTEaTBIiy1Cd65W0Hk_6JNkkL37WvlKCjoKU9LVXyf7E1RPh7ICL5I9o6e5fImHw&h=SS1UPnZ_3Ksw2V5Pn-DdHT4ZFEAyDg5czgjoku0rbQQ
cache-control:
- no-cache
content-length:
- - '720'
+ - '689'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:33 GMT
+ - Tue, 04 Mar 2025 02:28:10 GMT
expires:
- '-1'
pragma:
@@ -3998,13 +4166,13 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 3ef756f0-7acd-46a2-92c5-bb6387c7d01a
+ - a2cf21a7-e89e-48af-98cc-4cce3be0856f
x-ms-ratelimit-remaining-subscription-global-writes:
- '2999'
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: 51379966A7A54C76B7E5641789F435B7 Ref B: TYO201151001011 Ref C: 2024-08-26T09:59:32Z'
+ - 'Ref A: E38EB04B388B4E8AA6B4C88280385C43 Ref B: SEL221051804021 Ref C: 2025-03-04T02:28:09Z'
status:
code: 200
message: OK
@@ -4022,9 +4190,9 @@ 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.70.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/eastus/operations/7bf989af-cbcd-4499-9d88-07a578d026ae?api-version=2024-01-01&t=638602631735408573&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=Mbah_gb2HVqT6QjG-_PocSiTZeflHw2fS0iWXsM6OohT2A2TsGiG0z51rrIMhyG4m4l-mFehN3QCa02YNPTE3BLmhn8SEG_smZXawPmOIBtk2ggzYqwqJDcx-r_4aPegTDveEjm_3hXWXsrsWvL6zCIN6Jb2qHtB_54U8HQFYW8l30SRQJMYQNGdexiGu1i3LlSDTjQYC9jq9VNn9WKzZrDHC98zsPfNnWByCoGfZjduNBjhmKbBDQEBySzJ-jkA0xg6zcUJkEh4FQmQi13OMGac5qpaI1yvGt9OhAichi-v7mIM-NfYuKzVDdK2MoJ1kuMVafDXrWsJp6uxElu1eA&h=0u9Hu369mHVjfIOhh2Dyi6V6gKwYLZSrr2TLr-nIQgI
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e2172637-bd9f-454f-a2cd-3e476e298728?api-version=2024-01-01&t=638766520908313868&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=SCkEIQ6cR_ftIaOp89BP-gdpbWhP2GxoFIpSbaDVlk42AETW4daE8R0qv4aXMcOS6n_NOCePYxxrpzUz3r4fsE9DPh5XQIdUMAWWAPCEqos2xCE9h-nJVVpsdk123nvZtjOZcjtfIBdypGO7nZJ1IqzBOxDLbLtsMPakvy68MRhWGf_0MsDJx8Nk7aFaL_sVbrBotDMHC-bXkV7z_mAEAJCgiiPiRRkd10vXgR7mD0YFdSTS2n_cf4cBGSxgOzlSzhgcJXoEsK8irSI9eGuV2hBTEaTBIiy1Cd65W0Hk_6JNkkL37WvlKCjoKU9LVXyf7E1RPh7ICL5I9o6e5fImHw&h=SS1UPnZ_3Ksw2V5Pn-DdHT4ZFEAyDg5czgjoku0rbQQ
response:
body:
string: '{"status":"Succeeded"}'
@@ -4036,7 +4204,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:33 GMT
+ - Tue, 04 Mar 2025 02:28:11 GMT
expires:
- '-1'
pragma:
@@ -4048,11 +4216,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 94994272-4054-4bfc-8ead-73cdf252c924
+ - fb88bb96-d154-477e-8a98-2136cc3e607a
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3746'
x-msedge-ref:
- - 'Ref A: 83CCEA0252EA4D3A9CF317EAFB8346ED Ref B: TYO201151001011 Ref C: 2024-08-26T09:59:33Z'
+ - 'Ref A: D201E3EEB0BC4DAA9881843F8C5229DE Ref B: SEL221051804021 Ref C: 2025-03-04T02:28:10Z'
status:
code: 200
message: OK
@@ -4070,23 +4238,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.70.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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-01-01
response:
body:
- string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"6e101c12-56e4-4250-aa5d-4bc4283f6404\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGF2WCDHCFVNONHDELTCJPFXHCFTT5XGL2UN4FVPOI4IAZFFU7PLJ7SH575QA2TS3XT/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}'
+ string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"24470dae-b23b-42ac-abd3-9433fdae18ba\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGYCWA53ELECMXQ5EXUG4FKFA4WETIAN6HYPXGTJ3F6H6PCKFKVLYXJMYWNOXPW33GA/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:
- - '780'
+ - '749'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:34 GMT
+ - Tue, 04 Mar 2025 02:28:12 GMT
etag:
- - W/"6e101c12-56e4-4250-aa5d-4bc4283f6404"
+ - W/"24470dae-b23b-42ac-abd3-9433fdae18ba"
expires:
- '-1'
pragma:
@@ -4098,11 +4266,57 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - c32fa57c-9aaf-477d-9b42-21337c3a855f
+ - 03a369b5-5fe7-4cf3-b58d-64c7cddf75f1
x-ms-ratelimit-remaining-subscription-global-reads:
- '3748'
x-msedge-ref:
- - 'Ref A: E7F198070D6A4A5480AB82A84D6F3A37 Ref B: TYO201151001011 Ref C: 2024-08-26T09:59:33Z'
+ - 'Ref A: B0EC8D551FC643FFA915DCF6ACBE268A Ref B: SEL221051804021 Ref C: 2025-03-04T02:28:11Z'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm application set
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --app-version-ids --app-config-overrides
+ User-Agent:
+ - AZURECLI/2.70.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/clitest.rg000001?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_add_application_with_config_override","date":"2025-03-04T02:26:03Z","module":"vm","Creator":"zhuyan@microsoft.com","DateCreated":"2025-03-04T02:26:10Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '448'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 04 Mar 2025 02:28:13 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: 4A289B23BB0D4E1BA971EC6A76C95B32 Ref B: SEL221051805009 Ref C: 2025-03-04T02:28:13Z'
status:
code: 200
message: OK
@@ -4120,7 +4334,7 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --app-config-overrides
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-07-01
response:
@@ -4129,16 +4343,16 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"0fe721bf-cec2-4711-98e6-3c11a5b5741e\"\
+ : \"Succeeded\",\r\n \"vmId\": \"949487e5-bfff-4d4f-9b6e-7797132f2ae6\"\
,\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"\
publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\"\
,\r\n \"sku\": \"2022-datacenter-g2\",\r\n \"version\": \"latest\"\
- ,\r\n \"exactVersion\": \"20348.2655.240810\"\r\n },\r\n \
+ ,\r\n \"exactVersion\": \"20348.3207.250210\"\r\n },\r\n \
\ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"\
- vm1_OsDisk_1_99ecaeddf080468eae8b06ad6cadac72\",\r\n \"createOption\"\
+ vm1_OsDisk_1_7dc8b29c93104bca8c6b5c83ff2d1072\",\r\n \"createOption\"\
: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\"\
: {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_99ecaeddf080468eae8b06ad6cadac72\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_7dc8b29c93104bca8c6b5c83ff2d1072\"\
\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\
: 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\"\
: \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"\
@@ -4153,7 +4367,7 @@ interactions:
\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n },\r\n \"\
networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"timeCreated\": \"\
- 2024-08-26T09:58:05.8717269+00:00\"\r\n },\r\n \"etag\": \"\\\"2\\\"\"\r\
+ 2025-03-04T02:26:45.9510455+00:00\"\r\n },\r\n \"etag\": \"\\\"2\\\"\"\r\
\n}"
headers:
cache-control:
@@ -4163,7 +4377,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:35 GMT
+ - Tue, 04 Mar 2025 02:28:14 GMT
etag:
- '"2"'
expires:
@@ -4176,33 +4390,36 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGetSubscriptionMaximum;23977,Microsoft.Compute/LowCostGetResource;32
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23988,Microsoft.Compute/LowCostGetResource;32
x-ms-ratelimit-remaining-subscription-global-reads:
- '3748'
x-msedge-ref:
- - 'Ref A: 557D5003E7A142D4AE50C090A41A8F6F Ref B: TYO201100114011 Ref C: 2024-08-26T09:59:35Z'
+ - 'Ref A: 8C7E5C97735E44CFBACEF75F316375C5 Ref B: SEL221051801039 Ref C: 2025-03-04T02:28:13Z'
status:
code: 200
message: ''
- request:
- body: '{"location": "eastus", "tags": {}, "properties": {"hardwareProfile": {"vmSize":
- "Standard_DS1_v2"}, "storageProfile": {"imageReference": {"publisher": "MicrosoftWindowsServer",
- "offer": "WindowsServer", "sku": "2022-datacenter-g2", "version": "latest"},
- "osDisk": {"osType": "Windows", "name": "vm1_OsDisk_1_99ecaeddf080468eae8b06ad6cadac72",
- "caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 127, "managedDisk":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_99ecaeddf080468eae8b06ad6cadac72",
- "storageAccountType": "Premium_LRS"}, "deleteOption": "Detach"}, "dataDisks":
- [], "diskControllerType": "SCSI"}, "osProfile": {"computerName": "vm1", "adminUsername":
- "clitest1234", "windowsConfiguration": {"provisionVMAgent": true, "enableAutomaticUpdates":
- true, "patchSettings": {"patchMode": "AutomaticByOS", "assessmentMode": "ImageDefault"}},
- "secrets": [], "allowExtensionOperations": true, "requireGuestProvisionSignal":
- true}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"}]},
- "securityProfile": {"uefiSettings": {"secureBootEnabled": true, "vTpmEnabled":
- true}, "securityType": "TrustedLaunch"}, "licenseType": "Windows_Server", "applicationProfile":
- {"galleryApplications": [{"packageReferenceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MyFirstApp/versions/1.0.0",
- "configurationReference": "null"}, {"packageReferenceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MySecondApp/versions/1.0.1",
- "configurationReference": "https://galleryappaccount.blob.core.windows.net/gallerytest/MyAppConfig"}]}}}'
+ body: '{"location": "eastus", "properties": {"applicationProfile": {"galleryApplications":
+ [{"configurationReference": "null", "packageReferenceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MyFirstApp/versions/1.0.0"},
+ {"configurationReference": "https://galleryappaccount.blob.core.windows.net/gallerytest/MyAppConfig",
+ "packageReferenceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MySecondApp/versions/1.0.1"}]},
+ "hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "licenseType": "Windows_Server",
+ "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"}]},
+ "osProfile": {"adminUsername": "clitest1234", "allowExtensionOperations": true,
+ "computerName": "vm1", "requireGuestProvisionSignal": true, "secrets": [], "windowsConfiguration":
+ {"enableAutomaticUpdates": true, "patchSettings": {"assessmentMode": "ImageDefault",
+ "patchMode": "AutomaticByOS"}, "provisionVMAgent": true}}, "securityProfile":
+ {"securityType": "TrustedLaunch", "uefiSettings": {"secureBootEnabled": true,
+ "vTpmEnabled": true}}, "storageProfile": {"dataDisks": [], "diskControllerType":
+ "SCSI", "imageReference": {"offer": "WindowsServer", "publisher": "MicrosoftWindowsServer",
+ "sku": "2022-datacenter-g2", "version": "latest"}, "osDisk": {"caching": "ReadWrite",
+ "createOption": "FromImage", "deleteOption": "Detach", "diskSizeGB": 127, "managedDisk":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_7dc8b29c93104bca8c6b5c83ff2d1072",
+ "storageAccountType": "Premium_LRS"}, "name": "vm1_OsDisk_1_7dc8b29c93104bca8c6b5c83ff2d1072",
+ "osType": "Windows"}}}, "tags": {}}'
headers:
Accept:
- application/json
@@ -4219,7 +4436,7 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --app-config-overrides
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-07-01
response:
@@ -4228,7 +4445,7 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"vmId\": \"0fe721bf-cec2-4711-98e6-3c11a5b5741e\"\
+ : \"Updating\",\r\n \"vmId\": \"949487e5-bfff-4d4f-9b6e-7797132f2ae6\"\
,\r\n \"applicationProfile\": {\r\n \"galleryApplications\": [\r\n\
\ {\r\n \"manuallyManaged\": false,\r\n \"packageReferenceId\"\
: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MyFirstApp/versions/1.0.0\"\
@@ -4242,12 +4459,12 @@ interactions:
storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\"\
: \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n\
\ \"sku\": \"2022-datacenter-g2\",\r\n \"version\": \"latest\"\
- ,\r\n \"exactVersion\": \"20348.2655.240810\"\r\n },\r\n \
+ ,\r\n \"exactVersion\": \"20348.3207.250210\"\r\n },\r\n \
\ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"\
- vm1_OsDisk_1_99ecaeddf080468eae8b06ad6cadac72\",\r\n \"createOption\"\
+ vm1_OsDisk_1_7dc8b29c93104bca8c6b5c83ff2d1072\",\r\n \"createOption\"\
: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\"\
: {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_99ecaeddf080468eae8b06ad6cadac72\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_7dc8b29c93104bca8c6b5c83ff2d1072\"\
\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\
: 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\"\
: \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"\
@@ -4262,7 +4479,7 @@ interactions:
\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n },\r\n \"\
networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"timeCreated\": \"\
- 2024-08-26T09:58:05.8717269+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\",\r\
+ 2025-03-04T02:26:45.9510455+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\",\r\
\n \"resources\": [\r\n {\r\n \"name\": \"VMAppExtension\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/extensions/VMAppExtension\"\
,\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n\
@@ -4275,7 +4492,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/15e471a9-8d85-47c3-8d17-57be4f86f3e3?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631776189191&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=cAbxICQmFaBhKJ2XUQx0xeaJdsb9yAN-WURcgiBrXBZFvkBfF8lf8daKI9p4gi-ImsqR_7_icUhQb0s7SsaOBtG5CeNY9M6LUQtyaOwDx-4C6-qfqr2u4ZA_j8VEtWqkpoOEsrDw6g7BrErz1ZJhXbjjYV7-xcgahYknpNw4lE9c5E1jZ0_H3AvBD_O5G1snwgVkFzMomJzYFdR2W6f2X0onTVUbkdk_dcpvUVufmajt60fglza5kiWEvZ1ExTVNhWVrVUaWyjS2yIRUv0C1stNU9BnyVfs9fY9GrLkV10AlEPHdGVlqw3qTrXHUQxP7_SeRM0-8R0fps_6nGria9Q&h=bivtsWHTmvoXIpbNavBrArhtpOWD6p_UwkYUUoiMlO4
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff67b6a6-07c1-46a4-b272-7967e8fbf487?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638766520967195119&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=OxTJLrUiv0T2zCIZhyQvQusm19_nlEHB086e6FltiDMHBOYiuzxBvcI29ZIsEIBshtt6bBIwzl-HhXdwXL-rGPy-LwgMb3l_IzTkvEqA82y2fyyuQkr3aNf7OlHtd03eAJ4MZo1k8rWrhNeQNlcDynX-IEa2eNGSTTimRqNzCA-cjZpDar-59fgY9eASAGhO5q4TVlCpiCIETnnIBpETd0uBMFH7QqLij90JcBc2CJcVqOZufip15y5a1UyM-pIFV_V6ejAasxcTbMITC7CTP8bQ0JSMFWrnnM4YNkWCnjNNVktUkaLiZZ2tAQDbQmZh_9JHkn1v6Oncrw3JCooieA&h=MKkyEMRs8n_KFgR2mZX-zH0-xY0pFyykN3eUUd3vs1k
cache-control:
- no-cache
content-length:
@@ -4283,7 +4500,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:37 GMT
+ - Tue, 04 Mar 2025 02:28:16 GMT
etag:
- '"3"'
expires:
@@ -4296,14 +4513,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/PutVMResource;11
x-ms-ratelimit-remaining-subscription-global-writes:
- - '2999'
+ - '2998'
x-ms-ratelimit-remaining-subscription-writes:
- - '199'
+ - '198'
x-msedge-ref:
- - 'Ref A: FEE245689E684FACB699EA8A60183A9F Ref B: TYO201100114011 Ref C: 2024-08-26T09:59:35Z'
+ - 'Ref A: DAE6563CC8FE43249B91C8F92D2CCD42 Ref B: SEL221051801039 Ref C: 2025-03-04T02:28:14Z'
status:
code: 200
message: ''
@@ -4321,13 +4540,13 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --app-config-overrides
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/eastus/operations/15e471a9-8d85-47c3-8d17-57be4f86f3e3?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631776189191&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=cAbxICQmFaBhKJ2XUQx0xeaJdsb9yAN-WURcgiBrXBZFvkBfF8lf8daKI9p4gi-ImsqR_7_icUhQb0s7SsaOBtG5CeNY9M6LUQtyaOwDx-4C6-qfqr2u4ZA_j8VEtWqkpoOEsrDw6g7BrErz1ZJhXbjjYV7-xcgahYknpNw4lE9c5E1jZ0_H3AvBD_O5G1snwgVkFzMomJzYFdR2W6f2X0onTVUbkdk_dcpvUVufmajt60fglza5kiWEvZ1ExTVNhWVrVUaWyjS2yIRUv0C1stNU9BnyVfs9fY9GrLkV10AlEPHdGVlqw3qTrXHUQxP7_SeRM0-8R0fps_6nGria9Q&h=bivtsWHTmvoXIpbNavBrArhtpOWD6p_UwkYUUoiMlO4
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff67b6a6-07c1-46a4-b272-7967e8fbf487?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638766520967195119&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=OxTJLrUiv0T2zCIZhyQvQusm19_nlEHB086e6FltiDMHBOYiuzxBvcI29ZIsEIBshtt6bBIwzl-HhXdwXL-rGPy-LwgMb3l_IzTkvEqA82y2fyyuQkr3aNf7OlHtd03eAJ4MZo1k8rWrhNeQNlcDynX-IEa2eNGSTTimRqNzCA-cjZpDar-59fgY9eASAGhO5q4TVlCpiCIETnnIBpETd0uBMFH7QqLij90JcBc2CJcVqOZufip15y5a1UyM-pIFV_V6ejAasxcTbMITC7CTP8bQ0JSMFWrnnM4YNkWCnjNNVktUkaLiZZ2tAQDbQmZh_9JHkn1v6Oncrw3JCooieA&h=MKkyEMRs8n_KFgR2mZX-zH0-xY0pFyykN3eUUd3vs1k
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:59:37.0441829+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"15e471a9-8d85-47c3-8d17-57be4f86f3e3\"\
+ string: "{\r\n \"startTime\": \"2025-03-04T02:28:16.3262177+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"ff67b6a6-07c1-46a4-b272-7967e8fbf487\"\
\r\n}"
headers:
cache-control:
@@ -4337,7 +4556,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:37 GMT
+ - Tue, 04 Mar 2025 02:28:17 GMT
expires:
- '-1'
pragma:
@@ -4348,12 +4567,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;14983
+ - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14992
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 8D18B591D5504B79BD0C56FD5CD126A2 Ref B: TYO201100114011 Ref C: 2024-08-26T09:59:37Z'
+ - 'Ref A: C9D82ABC256D4890B00E75D6AB6F13E4 Ref B: SEL221051801039 Ref C: 2025-03-04T02:28:16Z'
status:
code: 200
message: ''
@@ -4371,13 +4592,13 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --app-config-overrides
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/eastus/operations/15e471a9-8d85-47c3-8d17-57be4f86f3e3?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631776189191&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=cAbxICQmFaBhKJ2XUQx0xeaJdsb9yAN-WURcgiBrXBZFvkBfF8lf8daKI9p4gi-ImsqR_7_icUhQb0s7SsaOBtG5CeNY9M6LUQtyaOwDx-4C6-qfqr2u4ZA_j8VEtWqkpoOEsrDw6g7BrErz1ZJhXbjjYV7-xcgahYknpNw4lE9c5E1jZ0_H3AvBD_O5G1snwgVkFzMomJzYFdR2W6f2X0onTVUbkdk_dcpvUVufmajt60fglza5kiWEvZ1ExTVNhWVrVUaWyjS2yIRUv0C1stNU9BnyVfs9fY9GrLkV10AlEPHdGVlqw3qTrXHUQxP7_SeRM0-8R0fps_6nGria9Q&h=bivtsWHTmvoXIpbNavBrArhtpOWD6p_UwkYUUoiMlO4
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff67b6a6-07c1-46a4-b272-7967e8fbf487?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638766520967195119&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=OxTJLrUiv0T2zCIZhyQvQusm19_nlEHB086e6FltiDMHBOYiuzxBvcI29ZIsEIBshtt6bBIwzl-HhXdwXL-rGPy-LwgMb3l_IzTkvEqA82y2fyyuQkr3aNf7OlHtd03eAJ4MZo1k8rWrhNeQNlcDynX-IEa2eNGSTTimRqNzCA-cjZpDar-59fgY9eASAGhO5q4TVlCpiCIETnnIBpETd0uBMFH7QqLij90JcBc2CJcVqOZufip15y5a1UyM-pIFV_V6ejAasxcTbMITC7CTP8bQ0JSMFWrnnM4YNkWCnjNNVktUkaLiZZ2tAQDbQmZh_9JHkn1v6Oncrw3JCooieA&h=MKkyEMRs8n_KFgR2mZX-zH0-xY0pFyykN3eUUd3vs1k
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:59:37.0441829+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"15e471a9-8d85-47c3-8d17-57be4f86f3e3\"\
+ string: "{\r\n \"startTime\": \"2025-03-04T02:28:16.3262177+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"ff67b6a6-07c1-46a4-b272-7967e8fbf487\"\
\r\n}"
headers:
cache-control:
@@ -4387,7 +4608,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:00:08 GMT
+ - Tue, 04 Mar 2025 02:28:47 GMT
expires:
- '-1'
pragma:
@@ -4398,12 +4619,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;14959
+ - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: DD5C25746E2F4028A894807FBF20053B Ref B: TYO201100114011 Ref C: 2024-08-26T10:00:08Z'
+ - 'Ref A: C652EE6F67AC40FFB49B3E0FD9E455A3 Ref B: SEL221051801039 Ref C: 2025-03-04T02:28:47Z'
status:
code: 200
message: ''
@@ -4421,13 +4644,13 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --app-config-overrides
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/eastus/operations/15e471a9-8d85-47c3-8d17-57be4f86f3e3?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631776189191&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=cAbxICQmFaBhKJ2XUQx0xeaJdsb9yAN-WURcgiBrXBZFvkBfF8lf8daKI9p4gi-ImsqR_7_icUhQb0s7SsaOBtG5CeNY9M6LUQtyaOwDx-4C6-qfqr2u4ZA_j8VEtWqkpoOEsrDw6g7BrErz1ZJhXbjjYV7-xcgahYknpNw4lE9c5E1jZ0_H3AvBD_O5G1snwgVkFzMomJzYFdR2W6f2X0onTVUbkdk_dcpvUVufmajt60fglza5kiWEvZ1ExTVNhWVrVUaWyjS2yIRUv0C1stNU9BnyVfs9fY9GrLkV10AlEPHdGVlqw3qTrXHUQxP7_SeRM0-8R0fps_6nGria9Q&h=bivtsWHTmvoXIpbNavBrArhtpOWD6p_UwkYUUoiMlO4
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff67b6a6-07c1-46a4-b272-7967e8fbf487?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638766520967195119&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=OxTJLrUiv0T2zCIZhyQvQusm19_nlEHB086e6FltiDMHBOYiuzxBvcI29ZIsEIBshtt6bBIwzl-HhXdwXL-rGPy-LwgMb3l_IzTkvEqA82y2fyyuQkr3aNf7OlHtd03eAJ4MZo1k8rWrhNeQNlcDynX-IEa2eNGSTTimRqNzCA-cjZpDar-59fgY9eASAGhO5q4TVlCpiCIETnnIBpETd0uBMFH7QqLij90JcBc2CJcVqOZufip15y5a1UyM-pIFV_V6ejAasxcTbMITC7CTP8bQ0JSMFWrnnM4YNkWCnjNNVktUkaLiZZ2tAQDbQmZh_9JHkn1v6Oncrw3JCooieA&h=MKkyEMRs8n_KFgR2mZX-zH0-xY0pFyykN3eUUd3vs1k
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:59:37.0441829+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"15e471a9-8d85-47c3-8d17-57be4f86f3e3\"\
+ string: "{\r\n \"startTime\": \"2025-03-04T02:28:16.3262177+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"ff67b6a6-07c1-46a4-b272-7967e8fbf487\"\
\r\n}"
headers:
cache-control:
@@ -4437,7 +4660,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:00:38 GMT
+ - Tue, 04 Mar 2025 02:29:17 GMT
expires:
- '-1'
pragma:
@@ -4448,12 +4671,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;14971
+ - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14996
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 9B7F0892AC6F470B819F220599622258 Ref B: TYO201100114011 Ref C: 2024-08-26T10:00:38Z'
+ - 'Ref A: 82D9C1940B9D4A789E53AB698DD39D52 Ref B: SEL221051801039 Ref C: 2025-03-04T02:29:17Z'
status:
code: 200
message: ''
@@ -4471,13 +4696,13 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --app-config-overrides
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/eastus/operations/15e471a9-8d85-47c3-8d17-57be4f86f3e3?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631776189191&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=cAbxICQmFaBhKJ2XUQx0xeaJdsb9yAN-WURcgiBrXBZFvkBfF8lf8daKI9p4gi-ImsqR_7_icUhQb0s7SsaOBtG5CeNY9M6LUQtyaOwDx-4C6-qfqr2u4ZA_j8VEtWqkpoOEsrDw6g7BrErz1ZJhXbjjYV7-xcgahYknpNw4lE9c5E1jZ0_H3AvBD_O5G1snwgVkFzMomJzYFdR2W6f2X0onTVUbkdk_dcpvUVufmajt60fglza5kiWEvZ1ExTVNhWVrVUaWyjS2yIRUv0C1stNU9BnyVfs9fY9GrLkV10AlEPHdGVlqw3qTrXHUQxP7_SeRM0-8R0fps_6nGria9Q&h=bivtsWHTmvoXIpbNavBrArhtpOWD6p_UwkYUUoiMlO4
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff67b6a6-07c1-46a4-b272-7967e8fbf487?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638766520967195119&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=OxTJLrUiv0T2zCIZhyQvQusm19_nlEHB086e6FltiDMHBOYiuzxBvcI29ZIsEIBshtt6bBIwzl-HhXdwXL-rGPy-LwgMb3l_IzTkvEqA82y2fyyuQkr3aNf7OlHtd03eAJ4MZo1k8rWrhNeQNlcDynX-IEa2eNGSTTimRqNzCA-cjZpDar-59fgY9eASAGhO5q4TVlCpiCIETnnIBpETd0uBMFH7QqLij90JcBc2CJcVqOZufip15y5a1UyM-pIFV_V6ejAasxcTbMITC7CTP8bQ0JSMFWrnnM4YNkWCnjNNVktUkaLiZZ2tAQDbQmZh_9JHkn1v6Oncrw3JCooieA&h=MKkyEMRs8n_KFgR2mZX-zH0-xY0pFyykN3eUUd3vs1k
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:59:37.0441829+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"15e471a9-8d85-47c3-8d17-57be4f86f3e3\"\
+ string: "{\r\n \"startTime\": \"2025-03-04T02:28:16.3262177+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"ff67b6a6-07c1-46a4-b272-7967e8fbf487\"\
\r\n}"
headers:
cache-control:
@@ -4487,7 +4712,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:01:08 GMT
+ - Tue, 04 Mar 2025 02:29:47 GMT
expires:
- '-1'
pragma:
@@ -4498,12 +4723,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;14956
+ - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3748'
x-msedge-ref:
- - 'Ref A: BB8A8A52E23A412AAD15BD82E23BFDB9 Ref B: TYO201100114011 Ref C: 2024-08-26T10:01:08Z'
+ - 'Ref A: F27C3EED32434897B147650AEEF5A7BB Ref B: SEL221051801039 Ref C: 2025-03-04T02:29:47Z'
status:
code: 200
message: ''
@@ -4521,13 +4748,13 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --app-config-overrides
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/eastus/operations/15e471a9-8d85-47c3-8d17-57be4f86f3e3?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631776189191&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=cAbxICQmFaBhKJ2XUQx0xeaJdsb9yAN-WURcgiBrXBZFvkBfF8lf8daKI9p4gi-ImsqR_7_icUhQb0s7SsaOBtG5CeNY9M6LUQtyaOwDx-4C6-qfqr2u4ZA_j8VEtWqkpoOEsrDw6g7BrErz1ZJhXbjjYV7-xcgahYknpNw4lE9c5E1jZ0_H3AvBD_O5G1snwgVkFzMomJzYFdR2W6f2X0onTVUbkdk_dcpvUVufmajt60fglza5kiWEvZ1ExTVNhWVrVUaWyjS2yIRUv0C1stNU9BnyVfs9fY9GrLkV10AlEPHdGVlqw3qTrXHUQxP7_SeRM0-8R0fps_6nGria9Q&h=bivtsWHTmvoXIpbNavBrArhtpOWD6p_UwkYUUoiMlO4
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff67b6a6-07c1-46a4-b272-7967e8fbf487?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638766520967195119&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=OxTJLrUiv0T2zCIZhyQvQusm19_nlEHB086e6FltiDMHBOYiuzxBvcI29ZIsEIBshtt6bBIwzl-HhXdwXL-rGPy-LwgMb3l_IzTkvEqA82y2fyyuQkr3aNf7OlHtd03eAJ4MZo1k8rWrhNeQNlcDynX-IEa2eNGSTTimRqNzCA-cjZpDar-59fgY9eASAGhO5q4TVlCpiCIETnnIBpETd0uBMFH7QqLij90JcBc2CJcVqOZufip15y5a1UyM-pIFV_V6ejAasxcTbMITC7CTP8bQ0JSMFWrnnM4YNkWCnjNNVktUkaLiZZ2tAQDbQmZh_9JHkn1v6Oncrw3JCooieA&h=MKkyEMRs8n_KFgR2mZX-zH0-xY0pFyykN3eUUd3vs1k
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:59:37.0441829+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"15e471a9-8d85-47c3-8d17-57be4f86f3e3\"\
+ string: "{\r\n \"startTime\": \"2025-03-04T02:28:16.3262177+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"ff67b6a6-07c1-46a4-b272-7967e8fbf487\"\
\r\n}"
headers:
cache-control:
@@ -4537,7 +4764,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:01:38 GMT
+ - Tue, 04 Mar 2025 02:30:18 GMT
expires:
- '-1'
pragma:
@@ -4548,12 +4775,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;14982
+ - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14997
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: B82E865AA2DD479EA52F13BB49EF3A5E Ref B: TYO201100114011 Ref C: 2024-08-26T10:01:39Z'
+ - 'Ref A: 1BA2B5F222AC40CCBD7BBB2EB75BF32A Ref B: SEL221051801039 Ref C: 2025-03-04T02:30:17Z'
status:
code: 200
message: ''
@@ -4571,13 +4800,13 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --app-config-overrides
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/eastus/operations/15e471a9-8d85-47c3-8d17-57be4f86f3e3?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631776189191&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=cAbxICQmFaBhKJ2XUQx0xeaJdsb9yAN-WURcgiBrXBZFvkBfF8lf8daKI9p4gi-ImsqR_7_icUhQb0s7SsaOBtG5CeNY9M6LUQtyaOwDx-4C6-qfqr2u4ZA_j8VEtWqkpoOEsrDw6g7BrErz1ZJhXbjjYV7-xcgahYknpNw4lE9c5E1jZ0_H3AvBD_O5G1snwgVkFzMomJzYFdR2W6f2X0onTVUbkdk_dcpvUVufmajt60fglza5kiWEvZ1ExTVNhWVrVUaWyjS2yIRUv0C1stNU9BnyVfs9fY9GrLkV10AlEPHdGVlqw3qTrXHUQxP7_SeRM0-8R0fps_6nGria9Q&h=bivtsWHTmvoXIpbNavBrArhtpOWD6p_UwkYUUoiMlO4
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff67b6a6-07c1-46a4-b272-7967e8fbf487?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638766520967195119&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=OxTJLrUiv0T2zCIZhyQvQusm19_nlEHB086e6FltiDMHBOYiuzxBvcI29ZIsEIBshtt6bBIwzl-HhXdwXL-rGPy-LwgMb3l_IzTkvEqA82y2fyyuQkr3aNf7OlHtd03eAJ4MZo1k8rWrhNeQNlcDynX-IEa2eNGSTTimRqNzCA-cjZpDar-59fgY9eASAGhO5q4TVlCpiCIETnnIBpETd0uBMFH7QqLij90JcBc2CJcVqOZufip15y5a1UyM-pIFV_V6ejAasxcTbMITC7CTP8bQ0JSMFWrnnM4YNkWCnjNNVktUkaLiZZ2tAQDbQmZh_9JHkn1v6Oncrw3JCooieA&h=MKkyEMRs8n_KFgR2mZX-zH0-xY0pFyykN3eUUd3vs1k
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:59:37.0441829+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"15e471a9-8d85-47c3-8d17-57be4f86f3e3\"\
+ string: "{\r\n \"startTime\": \"2025-03-04T02:28:16.3262177+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"ff67b6a6-07c1-46a4-b272-7967e8fbf487\"\
\r\n}"
headers:
cache-control:
@@ -4587,7 +4816,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:02:09 GMT
+ - Tue, 04 Mar 2025 02:30:48 GMT
expires:
- '-1'
pragma:
@@ -4598,12 +4827,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;14967
+ - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3748'
x-msedge-ref:
- - 'Ref A: 1282E94D90064782B782CBAD567C33C3 Ref B: TYO201100114011 Ref C: 2024-08-26T10:02:09Z'
+ - 'Ref A: 3B90D2C8E5364C88A3504D8D66DEB975 Ref B: SEL221051801039 Ref C: 2025-03-04T02:30:48Z'
status:
code: 200
message: ''
@@ -4621,13 +4852,13 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --app-config-overrides
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/eastus/operations/15e471a9-8d85-47c3-8d17-57be4f86f3e3?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631776189191&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=cAbxICQmFaBhKJ2XUQx0xeaJdsb9yAN-WURcgiBrXBZFvkBfF8lf8daKI9p4gi-ImsqR_7_icUhQb0s7SsaOBtG5CeNY9M6LUQtyaOwDx-4C6-qfqr2u4ZA_j8VEtWqkpoOEsrDw6g7BrErz1ZJhXbjjYV7-xcgahYknpNw4lE9c5E1jZ0_H3AvBD_O5G1snwgVkFzMomJzYFdR2W6f2X0onTVUbkdk_dcpvUVufmajt60fglza5kiWEvZ1ExTVNhWVrVUaWyjS2yIRUv0C1stNU9BnyVfs9fY9GrLkV10AlEPHdGVlqw3qTrXHUQxP7_SeRM0-8R0fps_6nGria9Q&h=bivtsWHTmvoXIpbNavBrArhtpOWD6p_UwkYUUoiMlO4
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff67b6a6-07c1-46a4-b272-7967e8fbf487?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638766520967195119&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=OxTJLrUiv0T2zCIZhyQvQusm19_nlEHB086e6FltiDMHBOYiuzxBvcI29ZIsEIBshtt6bBIwzl-HhXdwXL-rGPy-LwgMb3l_IzTkvEqA82y2fyyuQkr3aNf7OlHtd03eAJ4MZo1k8rWrhNeQNlcDynX-IEa2eNGSTTimRqNzCA-cjZpDar-59fgY9eASAGhO5q4TVlCpiCIETnnIBpETd0uBMFH7QqLij90JcBc2CJcVqOZufip15y5a1UyM-pIFV_V6ejAasxcTbMITC7CTP8bQ0JSMFWrnnM4YNkWCnjNNVktUkaLiZZ2tAQDbQmZh_9JHkn1v6Oncrw3JCooieA&h=MKkyEMRs8n_KFgR2mZX-zH0-xY0pFyykN3eUUd3vs1k
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:59:37.0441829+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"15e471a9-8d85-47c3-8d17-57be4f86f3e3\"\
+ string: "{\r\n \"startTime\": \"2025-03-04T02:28:16.3262177+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"ff67b6a6-07c1-46a4-b272-7967e8fbf487\"\
\r\n}"
headers:
cache-control:
@@ -4637,7 +4868,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:02:39 GMT
+ - Tue, 04 Mar 2025 02:31:18 GMT
expires:
- '-1'
pragma:
@@ -4648,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/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14987
+ - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 0717CDF2AA1449D3BDCA9FDCDCAC456B Ref B: TYO201100114011 Ref C: 2024-08-26T10:02:39Z'
+ - 'Ref A: 4315BBE75F6448FE8201BA2140A84FA3 Ref B: SEL221051801039 Ref C: 2025-03-04T02:31:18Z'
status:
code: 200
message: ''
@@ -4671,13 +4904,13 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --app-config-overrides
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/eastus/operations/15e471a9-8d85-47c3-8d17-57be4f86f3e3?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631776189191&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=cAbxICQmFaBhKJ2XUQx0xeaJdsb9yAN-WURcgiBrXBZFvkBfF8lf8daKI9p4gi-ImsqR_7_icUhQb0s7SsaOBtG5CeNY9M6LUQtyaOwDx-4C6-qfqr2u4ZA_j8VEtWqkpoOEsrDw6g7BrErz1ZJhXbjjYV7-xcgahYknpNw4lE9c5E1jZ0_H3AvBD_O5G1snwgVkFzMomJzYFdR2W6f2X0onTVUbkdk_dcpvUVufmajt60fglza5kiWEvZ1ExTVNhWVrVUaWyjS2yIRUv0C1stNU9BnyVfs9fY9GrLkV10AlEPHdGVlqw3qTrXHUQxP7_SeRM0-8R0fps_6nGria9Q&h=bivtsWHTmvoXIpbNavBrArhtpOWD6p_UwkYUUoiMlO4
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff67b6a6-07c1-46a4-b272-7967e8fbf487?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638766520967195119&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=OxTJLrUiv0T2zCIZhyQvQusm19_nlEHB086e6FltiDMHBOYiuzxBvcI29ZIsEIBshtt6bBIwzl-HhXdwXL-rGPy-LwgMb3l_IzTkvEqA82y2fyyuQkr3aNf7OlHtd03eAJ4MZo1k8rWrhNeQNlcDynX-IEa2eNGSTTimRqNzCA-cjZpDar-59fgY9eASAGhO5q4TVlCpiCIETnnIBpETd0uBMFH7QqLij90JcBc2CJcVqOZufip15y5a1UyM-pIFV_V6ejAasxcTbMITC7CTP8bQ0JSMFWrnnM4YNkWCnjNNVktUkaLiZZ2tAQDbQmZh_9JHkn1v6Oncrw3JCooieA&h=MKkyEMRs8n_KFgR2mZX-zH0-xY0pFyykN3eUUd3vs1k
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:59:37.0441829+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"15e471a9-8d85-47c3-8d17-57be4f86f3e3\"\
+ string: "{\r\n \"startTime\": \"2025-03-04T02:28:16.3262177+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"ff67b6a6-07c1-46a4-b272-7967e8fbf487\"\
\r\n}"
headers:
cache-control:
@@ -4687,7 +4920,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:03:10 GMT
+ - Tue, 04 Mar 2025 02:31:49 GMT
expires:
- '-1'
pragma:
@@ -4698,12 +4931,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;14981
+ - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: A8B72FF95AB941EE8649CB5178F8440F Ref B: TYO201100114011 Ref C: 2024-08-26T10:03:10Z'
+ - 'Ref A: 56423B65D76741098F0C799A6C915B55 Ref B: SEL221051801039 Ref C: 2025-03-04T02:31:48Z'
status:
code: 200
message: ''
@@ -4721,13 +4956,13 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --app-config-overrides
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/eastus/operations/15e471a9-8d85-47c3-8d17-57be4f86f3e3?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631776189191&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=cAbxICQmFaBhKJ2XUQx0xeaJdsb9yAN-WURcgiBrXBZFvkBfF8lf8daKI9p4gi-ImsqR_7_icUhQb0s7SsaOBtG5CeNY9M6LUQtyaOwDx-4C6-qfqr2u4ZA_j8VEtWqkpoOEsrDw6g7BrErz1ZJhXbjjYV7-xcgahYknpNw4lE9c5E1jZ0_H3AvBD_O5G1snwgVkFzMomJzYFdR2W6f2X0onTVUbkdk_dcpvUVufmajt60fglza5kiWEvZ1ExTVNhWVrVUaWyjS2yIRUv0C1stNU9BnyVfs9fY9GrLkV10AlEPHdGVlqw3qTrXHUQxP7_SeRM0-8R0fps_6nGria9Q&h=bivtsWHTmvoXIpbNavBrArhtpOWD6p_UwkYUUoiMlO4
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff67b6a6-07c1-46a4-b272-7967e8fbf487?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638766520967195119&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=OxTJLrUiv0T2zCIZhyQvQusm19_nlEHB086e6FltiDMHBOYiuzxBvcI29ZIsEIBshtt6bBIwzl-HhXdwXL-rGPy-LwgMb3l_IzTkvEqA82y2fyyuQkr3aNf7OlHtd03eAJ4MZo1k8rWrhNeQNlcDynX-IEa2eNGSTTimRqNzCA-cjZpDar-59fgY9eASAGhO5q4TVlCpiCIETnnIBpETd0uBMFH7QqLij90JcBc2CJcVqOZufip15y5a1UyM-pIFV_V6ejAasxcTbMITC7CTP8bQ0JSMFWrnnM4YNkWCnjNNVktUkaLiZZ2tAQDbQmZh_9JHkn1v6Oncrw3JCooieA&h=MKkyEMRs8n_KFgR2mZX-zH0-xY0pFyykN3eUUd3vs1k
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:59:37.0441829+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"15e471a9-8d85-47c3-8d17-57be4f86f3e3\"\
+ string: "{\r\n \"startTime\": \"2025-03-04T02:28:16.3262177+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"ff67b6a6-07c1-46a4-b272-7967e8fbf487\"\
\r\n}"
headers:
cache-control:
@@ -4737,7 +4972,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:03:40 GMT
+ - Tue, 04 Mar 2025 02:32:19 GMT
expires:
- '-1'
pragma:
@@ -4748,12 +4983,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;14994
+ - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: E0C1B6B7326E45C0A82A64FAEFCE3668 Ref B: TYO201100114011 Ref C: 2024-08-26T10:03:40Z'
+ - 'Ref A: 103ED8F6E3AB40669DBA8C8CBB752561 Ref B: SEL221051801039 Ref C: 2025-03-04T02:32:19Z'
status:
code: 200
message: ''
@@ -4771,13 +5008,13 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --app-config-overrides
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/eastus/operations/15e471a9-8d85-47c3-8d17-57be4f86f3e3?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631776189191&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=cAbxICQmFaBhKJ2XUQx0xeaJdsb9yAN-WURcgiBrXBZFvkBfF8lf8daKI9p4gi-ImsqR_7_icUhQb0s7SsaOBtG5CeNY9M6LUQtyaOwDx-4C6-qfqr2u4ZA_j8VEtWqkpoOEsrDw6g7BrErz1ZJhXbjjYV7-xcgahYknpNw4lE9c5E1jZ0_H3AvBD_O5G1snwgVkFzMomJzYFdR2W6f2X0onTVUbkdk_dcpvUVufmajt60fglza5kiWEvZ1ExTVNhWVrVUaWyjS2yIRUv0C1stNU9BnyVfs9fY9GrLkV10AlEPHdGVlqw3qTrXHUQxP7_SeRM0-8R0fps_6nGria9Q&h=bivtsWHTmvoXIpbNavBrArhtpOWD6p_UwkYUUoiMlO4
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff67b6a6-07c1-46a4-b272-7967e8fbf487?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638766520967195119&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=OxTJLrUiv0T2zCIZhyQvQusm19_nlEHB086e6FltiDMHBOYiuzxBvcI29ZIsEIBshtt6bBIwzl-HhXdwXL-rGPy-LwgMb3l_IzTkvEqA82y2fyyuQkr3aNf7OlHtd03eAJ4MZo1k8rWrhNeQNlcDynX-IEa2eNGSTTimRqNzCA-cjZpDar-59fgY9eASAGhO5q4TVlCpiCIETnnIBpETd0uBMFH7QqLij90JcBc2CJcVqOZufip15y5a1UyM-pIFV_V6ejAasxcTbMITC7CTP8bQ0JSMFWrnnM4YNkWCnjNNVktUkaLiZZ2tAQDbQmZh_9JHkn1v6Oncrw3JCooieA&h=MKkyEMRs8n_KFgR2mZX-zH0-xY0pFyykN3eUUd3vs1k
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:59:37.0441829+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"15e471a9-8d85-47c3-8d17-57be4f86f3e3\"\
+ string: "{\r\n \"startTime\": \"2025-03-04T02:28:16.3262177+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"ff67b6a6-07c1-46a4-b272-7967e8fbf487\"\
\r\n}"
headers:
cache-control:
@@ -4787,7 +5024,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:04:10 GMT
+ - Tue, 04 Mar 2025 02:32:49 GMT
expires:
- '-1'
pragma:
@@ -4798,12 +5035,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;14999
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: BA62AEC389C14019BE7C706D18C16764 Ref B: TYO201100114011 Ref C: 2024-08-26T10:04:11Z'
+ - 'Ref A: F49489F55FE849BE938636040C748D7F Ref B: SEL221051801039 Ref C: 2025-03-04T02:32:49Z'
status:
code: 200
message: ''
@@ -4821,13 +5060,13 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --app-config-overrides
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/eastus/operations/15e471a9-8d85-47c3-8d17-57be4f86f3e3?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631776189191&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=cAbxICQmFaBhKJ2XUQx0xeaJdsb9yAN-WURcgiBrXBZFvkBfF8lf8daKI9p4gi-ImsqR_7_icUhQb0s7SsaOBtG5CeNY9M6LUQtyaOwDx-4C6-qfqr2u4ZA_j8VEtWqkpoOEsrDw6g7BrErz1ZJhXbjjYV7-xcgahYknpNw4lE9c5E1jZ0_H3AvBD_O5G1snwgVkFzMomJzYFdR2W6f2X0onTVUbkdk_dcpvUVufmajt60fglza5kiWEvZ1ExTVNhWVrVUaWyjS2yIRUv0C1stNU9BnyVfs9fY9GrLkV10AlEPHdGVlqw3qTrXHUQxP7_SeRM0-8R0fps_6nGria9Q&h=bivtsWHTmvoXIpbNavBrArhtpOWD6p_UwkYUUoiMlO4
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff67b6a6-07c1-46a4-b272-7967e8fbf487?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638766520967195119&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=OxTJLrUiv0T2zCIZhyQvQusm19_nlEHB086e6FltiDMHBOYiuzxBvcI29ZIsEIBshtt6bBIwzl-HhXdwXL-rGPy-LwgMb3l_IzTkvEqA82y2fyyuQkr3aNf7OlHtd03eAJ4MZo1k8rWrhNeQNlcDynX-IEa2eNGSTTimRqNzCA-cjZpDar-59fgY9eASAGhO5q4TVlCpiCIETnnIBpETd0uBMFH7QqLij90JcBc2CJcVqOZufip15y5a1UyM-pIFV_V6ejAasxcTbMITC7CTP8bQ0JSMFWrnnM4YNkWCnjNNVktUkaLiZZ2tAQDbQmZh_9JHkn1v6Oncrw3JCooieA&h=MKkyEMRs8n_KFgR2mZX-zH0-xY0pFyykN3eUUd3vs1k
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:59:37.0441829+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"15e471a9-8d85-47c3-8d17-57be4f86f3e3\"\
+ string: "{\r\n \"startTime\": \"2025-03-04T02:28:16.3262177+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"ff67b6a6-07c1-46a4-b272-7967e8fbf487\"\
\r\n}"
headers:
cache-control:
@@ -4837,7 +5076,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:04:41 GMT
+ - Tue, 04 Mar 2025 02:33:20 GMT
expires:
- '-1'
pragma:
@@ -4848,12 +5087,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
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 7A3E3944F96E4913B438F5B163B66CD1 Ref B: TYO201100114011 Ref C: 2024-08-26T10:04:41Z'
+ - 'Ref A: BAAF38F23A354035843897BBC5421A09 Ref B: SEL221051801039 Ref C: 2025-03-04T02:33:20Z'
status:
code: 200
message: ''
@@ -4871,13 +5112,13 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --app-config-overrides
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/eastus/operations/15e471a9-8d85-47c3-8d17-57be4f86f3e3?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631776189191&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=cAbxICQmFaBhKJ2XUQx0xeaJdsb9yAN-WURcgiBrXBZFvkBfF8lf8daKI9p4gi-ImsqR_7_icUhQb0s7SsaOBtG5CeNY9M6LUQtyaOwDx-4C6-qfqr2u4ZA_j8VEtWqkpoOEsrDw6g7BrErz1ZJhXbjjYV7-xcgahYknpNw4lE9c5E1jZ0_H3AvBD_O5G1snwgVkFzMomJzYFdR2W6f2X0onTVUbkdk_dcpvUVufmajt60fglza5kiWEvZ1ExTVNhWVrVUaWyjS2yIRUv0C1stNU9BnyVfs9fY9GrLkV10AlEPHdGVlqw3qTrXHUQxP7_SeRM0-8R0fps_6nGria9Q&h=bivtsWHTmvoXIpbNavBrArhtpOWD6p_UwkYUUoiMlO4
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff67b6a6-07c1-46a4-b272-7967e8fbf487?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638766520967195119&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=OxTJLrUiv0T2zCIZhyQvQusm19_nlEHB086e6FltiDMHBOYiuzxBvcI29ZIsEIBshtt6bBIwzl-HhXdwXL-rGPy-LwgMb3l_IzTkvEqA82y2fyyuQkr3aNf7OlHtd03eAJ4MZo1k8rWrhNeQNlcDynX-IEa2eNGSTTimRqNzCA-cjZpDar-59fgY9eASAGhO5q4TVlCpiCIETnnIBpETd0uBMFH7QqLij90JcBc2CJcVqOZufip15y5a1UyM-pIFV_V6ejAasxcTbMITC7CTP8bQ0JSMFWrnnM4YNkWCnjNNVktUkaLiZZ2tAQDbQmZh_9JHkn1v6Oncrw3JCooieA&h=MKkyEMRs8n_KFgR2mZX-zH0-xY0pFyykN3eUUd3vs1k
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:59:37.0441829+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"15e471a9-8d85-47c3-8d17-57be4f86f3e3\"\
+ string: "{\r\n \"startTime\": \"2025-03-04T02:28:16.3262177+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"ff67b6a6-07c1-46a4-b272-7967e8fbf487\"\
\r\n}"
headers:
cache-control:
@@ -4887,7 +5128,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:05:11 GMT
+ - Tue, 04 Mar 2025 02:33:50 GMT
expires:
- '-1'
pragma:
@@ -4898,12 +5139,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;14999
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 94AFEB738E424A368F74F242725658E5 Ref B: TYO201100114011 Ref C: 2024-08-26T10:05:11Z'
+ - 'Ref A: 1EFE75EDE43047679A19D920B2902678 Ref B: SEL221051801039 Ref C: 2025-03-04T02:33:50Z'
status:
code: 200
message: ''
@@ -4921,13 +5164,13 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --app-config-overrides
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/eastus/operations/15e471a9-8d85-47c3-8d17-57be4f86f3e3?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631776189191&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=cAbxICQmFaBhKJ2XUQx0xeaJdsb9yAN-WURcgiBrXBZFvkBfF8lf8daKI9p4gi-ImsqR_7_icUhQb0s7SsaOBtG5CeNY9M6LUQtyaOwDx-4C6-qfqr2u4ZA_j8VEtWqkpoOEsrDw6g7BrErz1ZJhXbjjYV7-xcgahYknpNw4lE9c5E1jZ0_H3AvBD_O5G1snwgVkFzMomJzYFdR2W6f2X0onTVUbkdk_dcpvUVufmajt60fglza5kiWEvZ1ExTVNhWVrVUaWyjS2yIRUv0C1stNU9BnyVfs9fY9GrLkV10AlEPHdGVlqw3qTrXHUQxP7_SeRM0-8R0fps_6nGria9Q&h=bivtsWHTmvoXIpbNavBrArhtpOWD6p_UwkYUUoiMlO4
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff67b6a6-07c1-46a4-b272-7967e8fbf487?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638766520967195119&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=OxTJLrUiv0T2zCIZhyQvQusm19_nlEHB086e6FltiDMHBOYiuzxBvcI29ZIsEIBshtt6bBIwzl-HhXdwXL-rGPy-LwgMb3l_IzTkvEqA82y2fyyuQkr3aNf7OlHtd03eAJ4MZo1k8rWrhNeQNlcDynX-IEa2eNGSTTimRqNzCA-cjZpDar-59fgY9eASAGhO5q4TVlCpiCIETnnIBpETd0uBMFH7QqLij90JcBc2CJcVqOZufip15y5a1UyM-pIFV_V6ejAasxcTbMITC7CTP8bQ0JSMFWrnnM4YNkWCnjNNVktUkaLiZZ2tAQDbQmZh_9JHkn1v6Oncrw3JCooieA&h=MKkyEMRs8n_KFgR2mZX-zH0-xY0pFyykN3eUUd3vs1k
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:59:37.0441829+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"15e471a9-8d85-47c3-8d17-57be4f86f3e3\"\
+ string: "{\r\n \"startTime\": \"2025-03-04T02:28:16.3262177+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"ff67b6a6-07c1-46a4-b272-7967e8fbf487\"\
\r\n}"
headers:
cache-control:
@@ -4937,7 +5180,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:05:41 GMT
+ - Tue, 04 Mar 2025 02:34:20 GMT
expires:
- '-1'
pragma:
@@ -4948,12 +5191,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;14998
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: DACEB7A0FEAA48F09F7F44B6954DA2E9 Ref B: TYO201100114011 Ref C: 2024-08-26T10:05:42Z'
+ - 'Ref A: 8CEA8F8DB2324699BBD520077B3DF918 Ref B: SEL221051801039 Ref C: 2025-03-04T02:34:20Z'
status:
code: 200
message: ''
@@ -4971,13 +5216,13 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --app-config-overrides
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/eastus/operations/15e471a9-8d85-47c3-8d17-57be4f86f3e3?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631776189191&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=cAbxICQmFaBhKJ2XUQx0xeaJdsb9yAN-WURcgiBrXBZFvkBfF8lf8daKI9p4gi-ImsqR_7_icUhQb0s7SsaOBtG5CeNY9M6LUQtyaOwDx-4C6-qfqr2u4ZA_j8VEtWqkpoOEsrDw6g7BrErz1ZJhXbjjYV7-xcgahYknpNw4lE9c5E1jZ0_H3AvBD_O5G1snwgVkFzMomJzYFdR2W6f2X0onTVUbkdk_dcpvUVufmajt60fglza5kiWEvZ1ExTVNhWVrVUaWyjS2yIRUv0C1stNU9BnyVfs9fY9GrLkV10AlEPHdGVlqw3qTrXHUQxP7_SeRM0-8R0fps_6nGria9Q&h=bivtsWHTmvoXIpbNavBrArhtpOWD6p_UwkYUUoiMlO4
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff67b6a6-07c1-46a4-b272-7967e8fbf487?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638766520967195119&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=OxTJLrUiv0T2zCIZhyQvQusm19_nlEHB086e6FltiDMHBOYiuzxBvcI29ZIsEIBshtt6bBIwzl-HhXdwXL-rGPy-LwgMb3l_IzTkvEqA82y2fyyuQkr3aNf7OlHtd03eAJ4MZo1k8rWrhNeQNlcDynX-IEa2eNGSTTimRqNzCA-cjZpDar-59fgY9eASAGhO5q4TVlCpiCIETnnIBpETd0uBMFH7QqLij90JcBc2CJcVqOZufip15y5a1UyM-pIFV_V6ejAasxcTbMITC7CTP8bQ0JSMFWrnnM4YNkWCnjNNVktUkaLiZZ2tAQDbQmZh_9JHkn1v6Oncrw3JCooieA&h=MKkyEMRs8n_KFgR2mZX-zH0-xY0pFyykN3eUUd3vs1k
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:59:37.0441829+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"15e471a9-8d85-47c3-8d17-57be4f86f3e3\"\
+ string: "{\r\n \"startTime\": \"2025-03-04T02:28:16.3262177+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"ff67b6a6-07c1-46a4-b272-7967e8fbf487\"\
\r\n}"
headers:
cache-control:
@@ -4987,7 +5232,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:06:12 GMT
+ - Tue, 04 Mar 2025 02:34:51 GMT
expires:
- '-1'
pragma:
@@ -4998,12 +5243,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;14999
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: F3E63A8C17524AA982FCEAE2D36639D0 Ref B: TYO201100114011 Ref C: 2024-08-26T10:06:12Z'
+ - 'Ref A: 94E1AD7A920D43F797562392E98E00F9 Ref B: SEL221051801039 Ref C: 2025-03-04T02:34:51Z'
status:
code: 200
message: ''
@@ -5021,13 +5268,13 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --app-config-overrides
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/eastus/operations/15e471a9-8d85-47c3-8d17-57be4f86f3e3?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631776189191&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=cAbxICQmFaBhKJ2XUQx0xeaJdsb9yAN-WURcgiBrXBZFvkBfF8lf8daKI9p4gi-ImsqR_7_icUhQb0s7SsaOBtG5CeNY9M6LUQtyaOwDx-4C6-qfqr2u4ZA_j8VEtWqkpoOEsrDw6g7BrErz1ZJhXbjjYV7-xcgahYknpNw4lE9c5E1jZ0_H3AvBD_O5G1snwgVkFzMomJzYFdR2W6f2X0onTVUbkdk_dcpvUVufmajt60fglza5kiWEvZ1ExTVNhWVrVUaWyjS2yIRUv0C1stNU9BnyVfs9fY9GrLkV10AlEPHdGVlqw3qTrXHUQxP7_SeRM0-8R0fps_6nGria9Q&h=bivtsWHTmvoXIpbNavBrArhtpOWD6p_UwkYUUoiMlO4
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff67b6a6-07c1-46a4-b272-7967e8fbf487?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638766520967195119&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=OxTJLrUiv0T2zCIZhyQvQusm19_nlEHB086e6FltiDMHBOYiuzxBvcI29ZIsEIBshtt6bBIwzl-HhXdwXL-rGPy-LwgMb3l_IzTkvEqA82y2fyyuQkr3aNf7OlHtd03eAJ4MZo1k8rWrhNeQNlcDynX-IEa2eNGSTTimRqNzCA-cjZpDar-59fgY9eASAGhO5q4TVlCpiCIETnnIBpETd0uBMFH7QqLij90JcBc2CJcVqOZufip15y5a1UyM-pIFV_V6ejAasxcTbMITC7CTP8bQ0JSMFWrnnM4YNkWCnjNNVktUkaLiZZ2tAQDbQmZh_9JHkn1v6Oncrw3JCooieA&h=MKkyEMRs8n_KFgR2mZX-zH0-xY0pFyykN3eUUd3vs1k
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:59:37.0441829+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"15e471a9-8d85-47c3-8d17-57be4f86f3e3\"\
+ string: "{\r\n \"startTime\": \"2025-03-04T02:28:16.3262177+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"ff67b6a6-07c1-46a4-b272-7967e8fbf487\"\
\r\n}"
headers:
cache-control:
@@ -5037,7 +5284,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:06:42 GMT
+ - Tue, 04 Mar 2025 02:35:21 GMT
expires:
- '-1'
pragma:
@@ -5048,12 +5295,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
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 349BB67CCC964075AD589F8630451499 Ref B: TYO201100114011 Ref C: 2024-08-26T10:06:43Z'
+ - 'Ref A: ABB4365B9A14424C878148461BE0C583 Ref B: SEL221051801039 Ref C: 2025-03-04T02:35:21Z'
status:
code: 200
message: ''
@@ -5071,13 +5320,13 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --app-config-overrides
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/eastus/operations/15e471a9-8d85-47c3-8d17-57be4f86f3e3?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631776189191&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=cAbxICQmFaBhKJ2XUQx0xeaJdsb9yAN-WURcgiBrXBZFvkBfF8lf8daKI9p4gi-ImsqR_7_icUhQb0s7SsaOBtG5CeNY9M6LUQtyaOwDx-4C6-qfqr2u4ZA_j8VEtWqkpoOEsrDw6g7BrErz1ZJhXbjjYV7-xcgahYknpNw4lE9c5E1jZ0_H3AvBD_O5G1snwgVkFzMomJzYFdR2W6f2X0onTVUbkdk_dcpvUVufmajt60fglza5kiWEvZ1ExTVNhWVrVUaWyjS2yIRUv0C1stNU9BnyVfs9fY9GrLkV10AlEPHdGVlqw3qTrXHUQxP7_SeRM0-8R0fps_6nGria9Q&h=bivtsWHTmvoXIpbNavBrArhtpOWD6p_UwkYUUoiMlO4
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff67b6a6-07c1-46a4-b272-7967e8fbf487?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638766520967195119&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=OxTJLrUiv0T2zCIZhyQvQusm19_nlEHB086e6FltiDMHBOYiuzxBvcI29ZIsEIBshtt6bBIwzl-HhXdwXL-rGPy-LwgMb3l_IzTkvEqA82y2fyyuQkr3aNf7OlHtd03eAJ4MZo1k8rWrhNeQNlcDynX-IEa2eNGSTTimRqNzCA-cjZpDar-59fgY9eASAGhO5q4TVlCpiCIETnnIBpETd0uBMFH7QqLij90JcBc2CJcVqOZufip15y5a1UyM-pIFV_V6ejAasxcTbMITC7CTP8bQ0JSMFWrnnM4YNkWCnjNNVktUkaLiZZ2tAQDbQmZh_9JHkn1v6Oncrw3JCooieA&h=MKkyEMRs8n_KFgR2mZX-zH0-xY0pFyykN3eUUd3vs1k
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:59:37.0441829+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"15e471a9-8d85-47c3-8d17-57be4f86f3e3\"\
+ string: "{\r\n \"startTime\": \"2025-03-04T02:28:16.3262177+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"ff67b6a6-07c1-46a4-b272-7967e8fbf487\"\
\r\n}"
headers:
cache-control:
@@ -5087,7 +5336,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:07:12 GMT
+ - Tue, 04 Mar 2025 02:35:51 GMT
expires:
- '-1'
pragma:
@@ -5098,12 +5347,66 @@ 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;14999
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: F74A916AD71244159DB5FA7338670CFF Ref B: TYO201100114011 Ref C: 2024-08-26T10:07:13Z'
+ - 'Ref A: 1F82B603B67D4339B6FF04E775D292B9 Ref B: SEL221051801039 Ref C: 2025-03-04T02:35:51Z'
+ status:
+ code: 200
+ message: ''
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm application set
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --app-version-ids --app-config-overrides
+ User-Agent:
+ - AZURECLI/2.70.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/eastus/operations/ff67b6a6-07c1-46a4-b272-7967e8fbf487?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638766520967195119&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=OxTJLrUiv0T2zCIZhyQvQusm19_nlEHB086e6FltiDMHBOYiuzxBvcI29ZIsEIBshtt6bBIwzl-HhXdwXL-rGPy-LwgMb3l_IzTkvEqA82y2fyyuQkr3aNf7OlHtd03eAJ4MZo1k8rWrhNeQNlcDynX-IEa2eNGSTTimRqNzCA-cjZpDar-59fgY9eASAGhO5q4TVlCpiCIETnnIBpETd0uBMFH7QqLij90JcBc2CJcVqOZufip15y5a1UyM-pIFV_V6ejAasxcTbMITC7CTP8bQ0JSMFWrnnM4YNkWCnjNNVktUkaLiZZ2tAQDbQmZh_9JHkn1v6Oncrw3JCooieA&h=MKkyEMRs8n_KFgR2mZX-zH0-xY0pFyykN3eUUd3vs1k
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2025-03-04T02:28:16.3262177+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"ff67b6a6-07c1-46a4-b272-7967e8fbf487\"\
+ \r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 04 Mar 2025 02:36:22 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;14998
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3749'
+ x-msedge-ref:
+ - 'Ref A: DA9AF6FFEC42453F9152E91D7FF7CD91 Ref B: SEL221051801039 Ref C: 2025-03-04T02:36:22Z'
status:
code: 200
message: ''
@@ -5121,14 +5424,14 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --app-config-overrides
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/eastus/operations/15e471a9-8d85-47c3-8d17-57be4f86f3e3?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631776189191&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=cAbxICQmFaBhKJ2XUQx0xeaJdsb9yAN-WURcgiBrXBZFvkBfF8lf8daKI9p4gi-ImsqR_7_icUhQb0s7SsaOBtG5CeNY9M6LUQtyaOwDx-4C6-qfqr2u4ZA_j8VEtWqkpoOEsrDw6g7BrErz1ZJhXbjjYV7-xcgahYknpNw4lE9c5E1jZ0_H3AvBD_O5G1snwgVkFzMomJzYFdR2W6f2X0onTVUbkdk_dcpvUVufmajt60fglza5kiWEvZ1ExTVNhWVrVUaWyjS2yIRUv0C1stNU9BnyVfs9fY9GrLkV10AlEPHdGVlqw3qTrXHUQxP7_SeRM0-8R0fps_6nGria9Q&h=bivtsWHTmvoXIpbNavBrArhtpOWD6p_UwkYUUoiMlO4
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff67b6a6-07c1-46a4-b272-7967e8fbf487?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638766520967195119&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=OxTJLrUiv0T2zCIZhyQvQusm19_nlEHB086e6FltiDMHBOYiuzxBvcI29ZIsEIBshtt6bBIwzl-HhXdwXL-rGPy-LwgMb3l_IzTkvEqA82y2fyyuQkr3aNf7OlHtd03eAJ4MZo1k8rWrhNeQNlcDynX-IEa2eNGSTTimRqNzCA-cjZpDar-59fgY9eASAGhO5q4TVlCpiCIETnnIBpETd0uBMFH7QqLij90JcBc2CJcVqOZufip15y5a1UyM-pIFV_V6ejAasxcTbMITC7CTP8bQ0JSMFWrnnM4YNkWCnjNNVktUkaLiZZ2tAQDbQmZh_9JHkn1v6Oncrw3JCooieA&h=MKkyEMRs8n_KFgR2mZX-zH0-xY0pFyykN3eUUd3vs1k
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:59:37.0441829+00:00\",\r\n \"\
- endTime\": \"2024-08-26T10:07:34.4217617+00:00\",\r\n \"status\": \"Succeeded\"\
- ,\r\n \"name\": \"15e471a9-8d85-47c3-8d17-57be4f86f3e3\"\r\n}"
+ string: "{\r\n \"startTime\": \"2025-03-04T02:28:16.3262177+00:00\",\r\n \"\
+ endTime\": \"2025-03-04T02:36:24.1709745+00:00\",\r\n \"status\": \"Succeeded\"\
+ ,\r\n \"name\": \"ff67b6a6-07c1-46a4-b272-7967e8fbf487\"\r\n}"
headers:
cache-control:
- no-cache
@@ -5137,7 +5440,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:07:43 GMT
+ - Tue, 04 Mar 2025 02:36:52 GMT
expires:
- '-1'
pragma:
@@ -5148,12 +5451,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;42,Microsoft.Compute/GetOperationSubscriptionMaximum;14999
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: B386CA16FBE24AE2AF08273A026B45BD Ref B: TYO201100114011 Ref C: 2024-08-26T10:07:43Z'
+ - 'Ref A: 66CACDE248A3404D8610E11657671555 Ref B: SEL221051801039 Ref C: 2025-03-04T02:36:52Z'
status:
code: 200
message: ''
@@ -5171,7 +5476,7 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --app-config-overrides
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-07-01
response:
@@ -5180,7 +5485,7 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"0fe721bf-cec2-4711-98e6-3c11a5b5741e\"\
+ : \"Succeeded\",\r\n \"vmId\": \"949487e5-bfff-4d4f-9b6e-7797132f2ae6\"\
,\r\n \"applicationProfile\": {\r\n \"galleryApplications\": [\r\n\
\ {\r\n \"manuallyManaged\": false,\r\n \"packageReferenceId\"\
: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MyFirstApp/versions/1.0.0\"\
@@ -5194,12 +5499,12 @@ interactions:
storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\"\
: \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n\
\ \"sku\": \"2022-datacenter-g2\",\r\n \"version\": \"latest\"\
- ,\r\n \"exactVersion\": \"20348.2655.240810\"\r\n },\r\n \
+ ,\r\n \"exactVersion\": \"20348.3207.250210\"\r\n },\r\n \
\ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"\
- vm1_OsDisk_1_99ecaeddf080468eae8b06ad6cadac72\",\r\n \"createOption\"\
+ vm1_OsDisk_1_7dc8b29c93104bca8c6b5c83ff2d1072\",\r\n \"createOption\"\
: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\"\
: {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_99ecaeddf080468eae8b06ad6cadac72\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_7dc8b29c93104bca8c6b5c83ff2d1072\"\
\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\
: 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\"\
: \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"\
@@ -5214,7 +5519,7 @@ interactions:
\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n },\r\n \"\
networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"timeCreated\": \"\
- 2024-08-26T09:58:05.8717269+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\",\r\
+ 2025-03-04T02:26:45.9510455+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\",\r\
\n \"resources\": [\r\n {\r\n \"name\": \"VMAppExtension\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/extensions/VMAppExtension\"\
,\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n\
@@ -5231,7 +5536,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:07:43 GMT
+ - Tue, 04 Mar 2025 02:36:53 GMT
etag:
- '"3"'
expires:
@@ -5244,12 +5549,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;34
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23999,Microsoft.Compute/LowCostGetResource;35
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: B8C59FCD60AB4627AD3E80283F6DFAA3 Ref B: TYO201100114011 Ref C: 2024-08-26T10:07:44Z'
+ - 'Ref A: 85A951C0252644C6B71E305D8D5976B0 Ref B: SEL221051801039 Ref C: 2025-03-04T02:36:53Z'
status:
code: 200
message: ''
@@ -5267,7 +5574,53 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --treat-deployment-as-failure
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/clitest.rg000001?api-version=2022-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_add_application_with_config_override","date":"2025-03-04T02:26:03Z","module":"vm","Creator":"zhuyan@microsoft.com","DateCreated":"2025-03-04T02:26:10Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '448'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 04 Mar 2025 02:36:54 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: EE6F49523C3D4C3BB10DE88A7C7AA22D Ref B: SEL221051805031 Ref C: 2025-03-04T02:36:54Z'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm application set
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --app-version-ids --treat-deployment-as-failure
+ User-Agent:
+ - AZURECLI/2.70.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/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-07-01
response:
@@ -5276,7 +5629,7 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"0fe721bf-cec2-4711-98e6-3c11a5b5741e\"\
+ : \"Succeeded\",\r\n \"vmId\": \"949487e5-bfff-4d4f-9b6e-7797132f2ae6\"\
,\r\n \"applicationProfile\": {\r\n \"galleryApplications\": [\r\n\
\ {\r\n \"manuallyManaged\": false,\r\n \"packageReferenceId\"\
: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MyFirstApp/versions/1.0.0\"\
@@ -5290,12 +5643,12 @@ interactions:
storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\"\
: \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n\
\ \"sku\": \"2022-datacenter-g2\",\r\n \"version\": \"latest\"\
- ,\r\n \"exactVersion\": \"20348.2655.240810\"\r\n },\r\n \
+ ,\r\n \"exactVersion\": \"20348.3207.250210\"\r\n },\r\n \
\ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"\
- vm1_OsDisk_1_99ecaeddf080468eae8b06ad6cadac72\",\r\n \"createOption\"\
+ vm1_OsDisk_1_7dc8b29c93104bca8c6b5c83ff2d1072\",\r\n \"createOption\"\
: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\"\
: {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_99ecaeddf080468eae8b06ad6cadac72\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_7dc8b29c93104bca8c6b5c83ff2d1072\"\
\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\
: 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\"\
: \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"\
@@ -5310,7 +5663,7 @@ interactions:
\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n },\r\n \"\
networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"timeCreated\": \"\
- 2024-08-26T09:58:05.8717269+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\",\r\
+ 2025-03-04T02:26:45.9510455+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\",\r\
\n \"resources\": [\r\n {\r\n \"name\": \"VMAppExtension\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/extensions/VMAppExtension\"\
,\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n\
@@ -5327,7 +5680,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:07:45 GMT
+ - Tue, 04 Mar 2025 02:36:55 GMT
etag:
- '"3"'
expires:
@@ -5340,33 +5693,36 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;33
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23998,Microsoft.Compute/LowCostGetResource;34
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: ADE4D104A3AE4CD5ACAB5E9EEFC0E497 Ref B: TYO201151005009 Ref C: 2024-08-26T10:07:45Z'
+ - 'Ref A: 499447B0F7B14ED2BBC3B3B9CFD962A5 Ref B: SEL221051805049 Ref C: 2025-03-04T02:36:55Z'
status:
code: 200
message: ''
- request:
- body: '{"location": "eastus", "tags": {}, "properties": {"hardwareProfile": {"vmSize":
- "Standard_DS1_v2"}, "storageProfile": {"imageReference": {"publisher": "MicrosoftWindowsServer",
- "offer": "WindowsServer", "sku": "2022-datacenter-g2", "version": "latest"},
- "osDisk": {"osType": "Windows", "name": "vm1_OsDisk_1_99ecaeddf080468eae8b06ad6cadac72",
- "caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 127, "managedDisk":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_99ecaeddf080468eae8b06ad6cadac72",
- "storageAccountType": "Premium_LRS"}, "deleteOption": "Detach"}, "dataDisks":
- [], "diskControllerType": "SCSI"}, "osProfile": {"computerName": "vm1", "adminUsername":
- "clitest1234", "windowsConfiguration": {"provisionVMAgent": true, "enableAutomaticUpdates":
- true, "patchSettings": {"patchMode": "AutomaticByOS", "assessmentMode": "ImageDefault"}},
- "secrets": [], "allowExtensionOperations": true, "requireGuestProvisionSignal":
- true}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"}]},
- "securityProfile": {"uefiSettings": {"secureBootEnabled": true, "vTpmEnabled":
- true}, "securityType": "TrustedLaunch"}, "licenseType": "Windows_Server", "applicationProfile":
- {"galleryApplications": [{"packageReferenceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MyFirstApp/versions/1.0.0",
+ body: '{"location": "eastus", "properties": {"applicationProfile": {"galleryApplications":
+ [{"packageReferenceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MyFirstApp/versions/1.0.0",
"treatFailureAsDeploymentFailure": true}, {"packageReferenceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MySecondApp/versions/1.0.1",
- "treatFailureAsDeploymentFailure": false}]}}}'
+ "treatFailureAsDeploymentFailure": false}]}, "hardwareProfile": {"vmSize": "Standard_DS1_v2"},
+ "licenseType": "Windows_Server", "networkProfile": {"networkInterfaces": [{"id":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"}]},
+ "osProfile": {"adminUsername": "clitest1234", "allowExtensionOperations": true,
+ "computerName": "vm1", "requireGuestProvisionSignal": true, "secrets": [], "windowsConfiguration":
+ {"enableAutomaticUpdates": true, "patchSettings": {"assessmentMode": "ImageDefault",
+ "patchMode": "AutomaticByOS"}, "provisionVMAgent": true}}, "securityProfile":
+ {"securityType": "TrustedLaunch", "uefiSettings": {"secureBootEnabled": true,
+ "vTpmEnabled": true}}, "storageProfile": {"dataDisks": [], "diskControllerType":
+ "SCSI", "imageReference": {"offer": "WindowsServer", "publisher": "MicrosoftWindowsServer",
+ "sku": "2022-datacenter-g2", "version": "latest"}, "osDisk": {"caching": "ReadWrite",
+ "createOption": "FromImage", "deleteOption": "Detach", "diskSizeGB": 127, "managedDisk":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_7dc8b29c93104bca8c6b5c83ff2d1072",
+ "storageAccountType": "Premium_LRS"}, "name": "vm1_OsDisk_1_7dc8b29c93104bca8c6b5c83ff2d1072",
+ "osType": "Windows"}}}, "tags": {}}'
headers:
Accept:
- application/json
@@ -5383,7 +5739,7 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --treat-deployment-as-failure
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-07-01
response:
@@ -5392,7 +5748,7 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"vmId\": \"0fe721bf-cec2-4711-98e6-3c11a5b5741e\"\
+ : \"Updating\",\r\n \"vmId\": \"949487e5-bfff-4d4f-9b6e-7797132f2ae6\"\
,\r\n \"applicationProfile\": {\r\n \"galleryApplications\": [\r\n\
\ {\r\n \"manuallyManaged\": false,\r\n \"packageReferenceId\"\
: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MyFirstApp/versions/1.0.0\"\
@@ -5406,12 +5762,12 @@ interactions:
storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\"\
: \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n\
\ \"sku\": \"2022-datacenter-g2\",\r\n \"version\": \"latest\"\
- ,\r\n \"exactVersion\": \"20348.2655.240810\"\r\n },\r\n \
+ ,\r\n \"exactVersion\": \"20348.3207.250210\"\r\n },\r\n \
\ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"\
- vm1_OsDisk_1_99ecaeddf080468eae8b06ad6cadac72\",\r\n \"createOption\"\
+ vm1_OsDisk_1_7dc8b29c93104bca8c6b5c83ff2d1072\",\r\n \"createOption\"\
: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\"\
: {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_99ecaeddf080468eae8b06ad6cadac72\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_7dc8b29c93104bca8c6b5c83ff2d1072\"\
\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\
: 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\"\
: \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"\
@@ -5426,7 +5782,7 @@ interactions:
\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n },\r\n \"\
networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"timeCreated\": \"\
- 2024-08-26T09:58:05.8717269+00:00\"\r\n },\r\n \"etag\": \"\\\"4\\\"\",\r\
+ 2025-03-04T02:26:45.9510455+00:00\"\r\n },\r\n \"etag\": \"\\\"4\\\"\",\r\
\n \"resources\": [\r\n {\r\n \"name\": \"VMAppExtension\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/extensions/VMAppExtension\"\
,\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n\
@@ -5439,7 +5795,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/dce390a6-a3d9-4a8a-b753-e42a3894e506?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602636680991995&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=Zwyrc-vKEe8_8Y4wWiKj8uVeFM7TPDvdLbI-jGGLigURcq4EWKI9Z56SyRawC2WTThdsM3eGcsJHU5kXgi2c76LhRA9T7lsb9zcoe8jeqJFlR7ofZFhwdX70kziHU2YuJu1i1CPlR5yLJ4wVYP5qHNUYtPAr6tAUCc-6GLZIQnmDK10T2PSjTAp7JmUxXShawsw1ouqHRW4H-x4N5P54R08WHV5lFz4uUL1R7PT1IxuCNY5tSYwQTuPkg8khXV2yCktJHz7uG-DUudrCgzaYoe46YKVuF7fYCnUwkfIaTqTaFV457FxkUZ2zU15FV97vAydyeFNfoXUEtr1nY_y-pg&h=kn2Jxt5DzuaR29PADhiMQa-UJSKxVwG4P-vMXHmWnMc
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e83a89b0-2e2c-4674-a50a-3cce2d0b8eb5?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638766526193401858&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=np4yIBh95uVIdS_mxCzbmO8lxY7UwESFAHMEtUKrmbNlPtNhBZxTlWqGeCpiJ8VJqeLneudZWbTcMda3dvsuikcuFtWrqifXJnhbUqqGPSpqby6u7OTTR0cts3moNhhiiD8PRigLQSw_CNhuRY3IfXEFZkGxwty_e3cijtarnnq70YTkC7Vmc4yuvYjZk867cbn9JV487Q4ejpU9qC4bH2Xxg0sdEykJAAjyDhHJNSAB2OH-1hzK7EcHMJhBlTLJO86xWeCdMzX7S_uJJiLz2iRO634jXpoI93M8l3HKPvpz669r0KFLRZjQpNOZXxvtt2Esp_dZksnymu3xYfHU4Q&h=6GIt3LFywsaWzLxQQQC0Bv2z5tmno80yDd204fbxr8Y
cache-control:
- no-cache
content-length:
@@ -5447,7 +5803,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:07:47 GMT
+ - Tue, 04 Mar 2025 02:36:59 GMT
etag:
- '"4"'
expires:
@@ -5460,6 +5816,8 @@ 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:
@@ -5467,7 +5825,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: 0EA9BD68214B478BAFDC1CCDCA579F65 Ref B: TYO201151005009 Ref C: 2024-08-26T10:07:46Z'
+ - 'Ref A: AFA721E533164FE789A6ABF81303B010 Ref B: SEL221051805049 Ref C: 2025-03-04T02:36:55Z'
status:
code: 200
message: ''
@@ -5485,13 +5843,13 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --treat-deployment-as-failure
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/eastus/operations/dce390a6-a3d9-4a8a-b753-e42a3894e506?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602636680991995&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=Zwyrc-vKEe8_8Y4wWiKj8uVeFM7TPDvdLbI-jGGLigURcq4EWKI9Z56SyRawC2WTThdsM3eGcsJHU5kXgi2c76LhRA9T7lsb9zcoe8jeqJFlR7ofZFhwdX70kziHU2YuJu1i1CPlR5yLJ4wVYP5qHNUYtPAr6tAUCc-6GLZIQnmDK10T2PSjTAp7JmUxXShawsw1ouqHRW4H-x4N5P54R08WHV5lFz4uUL1R7PT1IxuCNY5tSYwQTuPkg8khXV2yCktJHz7uG-DUudrCgzaYoe46YKVuF7fYCnUwkfIaTqTaFV457FxkUZ2zU15FV97vAydyeFNfoXUEtr1nY_y-pg&h=kn2Jxt5DzuaR29PADhiMQa-UJSKxVwG4P-vMXHmWnMc
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e83a89b0-2e2c-4674-a50a-3cce2d0b8eb5?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638766526193401858&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=np4yIBh95uVIdS_mxCzbmO8lxY7UwESFAHMEtUKrmbNlPtNhBZxTlWqGeCpiJ8VJqeLneudZWbTcMda3dvsuikcuFtWrqifXJnhbUqqGPSpqby6u7OTTR0cts3moNhhiiD8PRigLQSw_CNhuRY3IfXEFZkGxwty_e3cijtarnnq70YTkC7Vmc4yuvYjZk867cbn9JV487Q4ejpU9qC4bH2Xxg0sdEykJAAjyDhHJNSAB2OH-1hzK7EcHMJhBlTLJO86xWeCdMzX7S_uJJiLz2iRO634jXpoI93M8l3HKPvpz669r0KFLRZjQpNOZXxvtt2Esp_dZksnymu3xYfHU4Q&h=6GIt3LFywsaWzLxQQQC0Bv2z5tmno80yDd204fbxr8Y
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T10:07:47.6562006+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"dce390a6-a3d9-4a8a-b753-e42a3894e506\"\
+ string: "{\r\n \"startTime\": \"2025-03-04T02:36:58.8116619+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"e83a89b0-2e2c-4674-a50a-3cce2d0b8eb5\"\
\r\n}"
headers:
cache-control:
@@ -5501,7 +5859,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:07:48 GMT
+ - Tue, 04 Mar 2025 02:36:59 GMT
expires:
- '-1'
pragma:
@@ -5512,12 +5870,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;14996
+ - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998
x-ms-ratelimit-remaining-subscription-global-reads:
- '3748'
x-msedge-ref:
- - 'Ref A: BF0E1ABC228B4E70B77B3F66467206B6 Ref B: TYO201151005009 Ref C: 2024-08-26T10:07:48Z'
+ - 'Ref A: 0D8CABDF56D344508ACD27DB2A612F6A Ref B: SEL221051805049 Ref C: 2025-03-04T02:36:59Z'
status:
code: 200
message: ''
@@ -5535,64 +5895,14 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --treat-deployment-as-failure
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/eastus/operations/dce390a6-a3d9-4a8a-b753-e42a3894e506?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602636680991995&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=Zwyrc-vKEe8_8Y4wWiKj8uVeFM7TPDvdLbI-jGGLigURcq4EWKI9Z56SyRawC2WTThdsM3eGcsJHU5kXgi2c76LhRA9T7lsb9zcoe8jeqJFlR7ofZFhwdX70kziHU2YuJu1i1CPlR5yLJ4wVYP5qHNUYtPAr6tAUCc-6GLZIQnmDK10T2PSjTAp7JmUxXShawsw1ouqHRW4H-x4N5P54R08WHV5lFz4uUL1R7PT1IxuCNY5tSYwQTuPkg8khXV2yCktJHz7uG-DUudrCgzaYoe46YKVuF7fYCnUwkfIaTqTaFV457FxkUZ2zU15FV97vAydyeFNfoXUEtr1nY_y-pg&h=kn2Jxt5DzuaR29PADhiMQa-UJSKxVwG4P-vMXHmWnMc
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e83a89b0-2e2c-4674-a50a-3cce2d0b8eb5?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638766526193401858&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=np4yIBh95uVIdS_mxCzbmO8lxY7UwESFAHMEtUKrmbNlPtNhBZxTlWqGeCpiJ8VJqeLneudZWbTcMda3dvsuikcuFtWrqifXJnhbUqqGPSpqby6u7OTTR0cts3moNhhiiD8PRigLQSw_CNhuRY3IfXEFZkGxwty_e3cijtarnnq70YTkC7Vmc4yuvYjZk867cbn9JV487Q4ejpU9qC4bH2Xxg0sdEykJAAjyDhHJNSAB2OH-1hzK7EcHMJhBlTLJO86xWeCdMzX7S_uJJiLz2iRO634jXpoI93M8l3HKPvpz669r0KFLRZjQpNOZXxvtt2Esp_dZksnymu3xYfHU4Q&h=6GIt3LFywsaWzLxQQQC0Bv2z5tmno80yDd204fbxr8Y
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T10:07:47.6562006+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"dce390a6-a3d9-4a8a-b753-e42a3894e506\"\
- \r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '134'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 26 Aug 2024 10:08: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-resource:
- - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14999
- x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
- x-msedge-ref:
- - 'Ref A: 9BDCBB1D1C5B4507B1EBAD2BCB51ADB8 Ref B: TYO201151005009 Ref C: 2024-08-26T10:08:18Z'
- status:
- code: 200
- message: ''
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - vm application set
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --app-version-ids --treat-deployment-as-failure
- User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.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/eastus/operations/dce390a6-a3d9-4a8a-b753-e42a3894e506?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602636680991995&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=Zwyrc-vKEe8_8Y4wWiKj8uVeFM7TPDvdLbI-jGGLigURcq4EWKI9Z56SyRawC2WTThdsM3eGcsJHU5kXgi2c76LhRA9T7lsb9zcoe8jeqJFlR7ofZFhwdX70kziHU2YuJu1i1CPlR5yLJ4wVYP5qHNUYtPAr6tAUCc-6GLZIQnmDK10T2PSjTAp7JmUxXShawsw1ouqHRW4H-x4N5P54R08WHV5lFz4uUL1R7PT1IxuCNY5tSYwQTuPkg8khXV2yCktJHz7uG-DUudrCgzaYoe46YKVuF7fYCnUwkfIaTqTaFV457FxkUZ2zU15FV97vAydyeFNfoXUEtr1nY_y-pg&h=kn2Jxt5DzuaR29PADhiMQa-UJSKxVwG4P-vMXHmWnMc
- response:
- body:
- string: "{\r\n \"startTime\": \"2024-08-26T10:07:47.6562006+00:00\",\r\n \"\
- endTime\": \"2024-08-26T10:08:24.0626357+00:00\",\r\n \"status\": \"Succeeded\"\
- ,\r\n \"name\": \"dce390a6-a3d9-4a8a-b753-e42a3894e506\"\r\n}"
+ string: "{\r\n \"startTime\": \"2025-03-04T02:36:58.8116619+00:00\",\r\n \"\
+ endTime\": \"2025-03-04T02:37:25.4679782+00:00\",\r\n \"status\": \"Succeeded\"\
+ ,\r\n \"name\": \"e83a89b0-2e2c-4674-a50a-3cce2d0b8eb5\"\r\n}"
headers:
cache-control:
- no-cache
@@ -5601,7 +5911,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:08:49 GMT
+ - Tue, 04 Mar 2025 02:37:29 GMT
expires:
- '-1'
pragma:
@@ -5612,12 +5922,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;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14997
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 6CF3958FA278446F8833EC551F21EAE9 Ref B: TYO201151005009 Ref C: 2024-08-26T10:08:49Z'
+ - 'Ref A: 53F3D70D347D40D890E804B6EAB9A6C7 Ref B: SEL221051805049 Ref C: 2025-03-04T02:37:29Z'
status:
code: 200
message: ''
@@ -5635,7 +5947,7 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --treat-deployment-as-failure
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-07-01
response:
@@ -5644,7 +5956,7 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"0fe721bf-cec2-4711-98e6-3c11a5b5741e\"\
+ : \"Succeeded\",\r\n \"vmId\": \"949487e5-bfff-4d4f-9b6e-7797132f2ae6\"\
,\r\n \"applicationProfile\": {\r\n \"galleryApplications\": [\r\n\
\ {\r\n \"manuallyManaged\": false,\r\n \"packageReferenceId\"\
: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MyFirstApp/versions/1.0.0\"\
@@ -5658,12 +5970,12 @@ interactions:
storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\"\
: \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n\
\ \"sku\": \"2022-datacenter-g2\",\r\n \"version\": \"latest\"\
- ,\r\n \"exactVersion\": \"20348.2655.240810\"\r\n },\r\n \
+ ,\r\n \"exactVersion\": \"20348.3207.250210\"\r\n },\r\n \
\ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"\
- vm1_OsDisk_1_99ecaeddf080468eae8b06ad6cadac72\",\r\n \"createOption\"\
+ vm1_OsDisk_1_7dc8b29c93104bca8c6b5c83ff2d1072\",\r\n \"createOption\"\
: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\"\
: {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_99ecaeddf080468eae8b06ad6cadac72\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_7dc8b29c93104bca8c6b5c83ff2d1072\"\
\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\
: 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\"\
: \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"\
@@ -5678,7 +5990,7 @@ interactions:
\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n },\r\n \"\
networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"timeCreated\": \"\
- 2024-08-26T09:58:05.8717269+00:00\"\r\n },\r\n \"etag\": \"\\\"4\\\"\",\r\
+ 2025-03-04T02:26:45.9510455+00:00\"\r\n },\r\n \"etag\": \"\\\"4\\\"\",\r\
\n \"resources\": [\r\n {\r\n \"name\": \"VMAppExtension\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/extensions/VMAppExtension\"\
,\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n\
@@ -5695,7 +6007,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:08:49 GMT
+ - Tue, 04 Mar 2025 02:37:30 GMT
etag:
- '"4"'
expires:
@@ -5708,12 +6020,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;34
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23997,Microsoft.Compute/LowCostGetResource;33
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3748'
x-msedge-ref:
- - 'Ref A: 331637EC47A44DC390E31843BCEFFB93 Ref B: TYO201151005009 Ref C: 2024-08-26T10:08:49Z'
+ - 'Ref A: C583D5F36ABE4C298B5A9721317FC71E Ref B: SEL221051805049 Ref C: 2025-03-04T02:37:30Z'
status:
code: 200
message: ''
@@ -5731,7 +6045,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.70.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/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-07-01
response:
@@ -5740,7 +6054,7 @@ interactions:
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"0fe721bf-cec2-4711-98e6-3c11a5b5741e\"\
+ : \"Succeeded\",\r\n \"vmId\": \"949487e5-bfff-4d4f-9b6e-7797132f2ae6\"\
,\r\n \"applicationProfile\": {\r\n \"galleryApplications\": [\r\n\
\ {\r\n \"manuallyManaged\": false,\r\n \"packageReferenceId\"\
: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MyFirstApp/versions/1.0.0\"\
@@ -5754,12 +6068,12 @@ interactions:
storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\"\
: \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n\
\ \"sku\": \"2022-datacenter-g2\",\r\n \"version\": \"latest\"\
- ,\r\n \"exactVersion\": \"20348.2655.240810\"\r\n },\r\n \
+ ,\r\n \"exactVersion\": \"20348.3207.250210\"\r\n },\r\n \
\ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"\
- vm1_OsDisk_1_99ecaeddf080468eae8b06ad6cadac72\",\r\n \"createOption\"\
+ vm1_OsDisk_1_7dc8b29c93104bca8c6b5c83ff2d1072\",\r\n \"createOption\"\
: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\"\
: {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_99ecaeddf080468eae8b06ad6cadac72\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_7dc8b29c93104bca8c6b5c83ff2d1072\"\
\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\
: 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\"\
: \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"\
@@ -5774,7 +6088,7 @@ interactions:
\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n },\r\n \"\
networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"timeCreated\": \"\
- 2024-08-26T09:58:05.8717269+00:00\"\r\n },\r\n \"etag\": \"\\\"4\\\"\",\r\
+ 2025-03-04T02:26:45.9510455+00:00\"\r\n },\r\n \"etag\": \"\\\"4\\\"\",\r\
\n \"resources\": [\r\n {\r\n \"name\": \"VMAppExtension\",\r\n \
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/extensions/VMAppExtension\"\
,\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n\
@@ -5791,7 +6105,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:08:51 GMT
+ - Tue, 04 Mar 2025 02:37:30 GMT
etag:
- '"4"'
expires:
@@ -5804,12 +6118,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;23997,Microsoft.Compute/LowCostGetResource;33
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23995,Microsoft.Compute/LowCostGetResource;31
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 809086F8E9714DC2958D2F788F201E4B Ref B: TYO201100117047 Ref C: 2024-08-26T10:08:51Z'
+ - 'Ref A: 937E4F6FF501413192BD0BB8E2777F46 Ref B: SEL221051804017 Ref C: 2025-03-04T02:37:31Z'
status:
code: 200
message: ''
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_add_application_with_order_application.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_add_application_with_order_application.yaml
index 9d7662e4e9a..623ac6a3fc6 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_add_application_with_order_application.yaml
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_add_application_with_order_application.yaml
@@ -18,28 +18,34 @@ interactions:
,\n \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\"\
: {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"\
type\": \"object\",\n \"value\": {\n \"Linux\": {\n \"\
- CentOS85Gen2\": {\n \"publisher\": \"OpenLogic\",\n \
- \ \"offer\": \"CentOS\",\n \"sku\": \"8_5-gen2\",\n \
- \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \
- \ },\n \"Debian11\": {\n \"publisher\": \"Debian\"\
- ,\n \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\"\
- ,\n \"version\": \"latest\",\n \"architecture\": \"\
- x64\"\n },\n \"FlatcarLinuxFreeGen2\": {\n \"\
- publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\"\
- ,\n \"sku\": \"stable-gen2\",\n \"version\": \"latest\"\
- ,\n \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\"\
- : {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\"\
- ,\n \"sku\": \"gen2\",\n \"version\": \"latest\",\n\
- \ \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\"\
- : {\n \"publisher\": \"RedHat\",\n \"offer\": \"\
- RHEL\",\n \"sku\": \"8-lvm-gen2\",\n \"version\": \
- \ \"latest\",\n \"architecture\": \"x64\"\n },\n \
- \ \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n \
- \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \
- \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \
- \ },\n \"Ubuntu2204\": {\n \"publisher\": \"\
- Canonical\",\n \"offer\": \"0001-com-ubuntu-server-jammy\",\n\
- \ \"sku\": \"22_04-lts-gen2\",\n \"version\": \"latest\"\
+ CentOS85Gen2\": {\n \"publisher\": \"OpenLogic\",\n \
+ \ \"offer\": \"CentOS\",\n \"sku\": \"8_5-gen2\",\n \
+ \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \
+ \ },\n \"Debian11\": {\n \"publisher\": \"Debian\"\
+ ,\n \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\"\
+ ,\n \"version\": \"latest\",\n \"architecture\": \"\
+ x64\"\n },\n \"OpenSuseLeap154Gen2\": {\n \"\
+ publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n \
+ \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \
+ \ \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\"\
+ : {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\"\
+ ,\n \"sku\": \"8-lvm-gen2\",\n \"version\": \"latest\"\
+ ,\n \"architecture\": \"x64\"\n },\n \"SuseSles15SP5\"\
+ : {\n \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp5\"\
+ ,\n \"sku\": \"gen2\",\n \"version\": \"latest\",\n\
+ \ \"architecture\": \"x64\"\n },\n \"Ubuntu2204\"\
+ : {\n \"publisher\": \"Canonical\",\n \"offer\": \"\
+ 0001-com-ubuntu-server-jammy\",\n \"sku\": \"22_04-lts-gen2\",\n\
+ \ \"version\": \"latest\",\n \"architecture\": \"x64\"\
+ \n },\n \"Ubuntu2404\": {\n \"publisher\": \"\
+ Canonical\",\n \"offer\": \"ubuntu-24_04-lts\",\n \"\
+ sku\": \"server\",\n \"version\": \"latest\",\n \"architecture\"\
+ : \"x64\"\n },\n \"Ubuntu2404Pro\": {\n \"publisher\"\
+ : \"Canonical\",\n \"offer\": \"ubuntu-24_04-lts\",\n \
+ \ \"sku\": \"ubuntu-pro\",\n \"version\": \"latest\",\n \
+ \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\"\
+ : {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\"\
+ ,\n \"sku\": \"stable-gen2\",\n \"version\": \"latest\"\
,\n \"architecture\": \"x64\"\n }\n },\n \
\ \"Windows\": {\n \"Win2022Datacenter\": {\n \"publisher\"\
: \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n\
@@ -73,7 +79,7 @@ interactions:
connection:
- keep-alive
content-length:
- - '3384'
+ - '3790'
content-security-policy:
- default-src 'none'; style-src 'unsafe-inline'; sandbox
content-type:
@@ -81,13 +87,13 @@ interactions:
cross-origin-resource-policy:
- cross-origin
date:
- - Mon, 26 Aug 2024 09:57:43 GMT
+ - Mon, 03 Mar 2025 10:15:37 GMT
etag:
- - W/"8f34071e3f10c641931f33307d1319d34bae37f557ea31022a455502dae9ebc2"
+ - W/"0f53b56eda413b90fc6365dd4848831171968adfbf5b440c8da07b5866a97d67"
expires:
- - Mon, 26 Aug 2024 10:02:43 GMT
+ - Mon, 03 Mar 2025 10:20:37 GMT
source-age:
- - '177'
+ - '252'
strict-transport-security:
- max-age=31536000
vary:
@@ -97,19 +103,19 @@ interactions:
x-cache:
- HIT
x-cache-hits:
- - '1'
+ - '0'
x-content-type-options:
- nosniff
x-fastly-request-id:
- - bcf13973600a30e9e85f4cff2aa0a75fec7ded6f
+ - 92103c945b40740e7e0b77ca4f8932f570d56009
x-frame-options:
- deny
x-github-request-id:
- - 8060:3C8180:13D484:1818B3:66CC1340
+ - 5FB8:3A7811:1709A9:1968C8:67C4F15A
x-served-by:
- - cache-tyo11966-TYO
+ - cache-sin-wsss1830049-SIN
x-timer:
- - S1724666263.263017,VS0,VE1
+ - S1740996938.579479,VS0,VE1
x-xss-protection:
- 1; mode=block
status:
@@ -130,13 +136,13 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions?$top=1&$orderby=name%20desc&api-version=2024-07-01
response:
body:
- string: "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\"\
- ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\
+ string: "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\"\
+ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\
\r\n }\r\n]"
headers:
cache-control:
@@ -146,7 +152,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:43 GMT
+ - Mon, 03 Mar 2025 10:15:41 GMT
expires:
- '-1'
pragma:
@@ -158,11 +164,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15993,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43993
+ - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15999,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43987
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: E74183FBA445449A92AE8F68CD68A063 Ref B: TYO201100115031 Ref C: 2024-08-26T09:57:43Z'
+ - 'Ref A: 9BD967FCCD09408C9B49528AA140858C Ref B: SEL221051805031 Ref C: 2025-03-03T10:15:40Z'
status:
code: 200
message: OK
@@ -181,9 +187,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2655.240810?api-version=2024-07-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.3207.250210?api-version=2024-07-01
response:
body:
string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \
@@ -199,19 +205,19 @@ interactions:
,\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"\
name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n \
\ }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\
- ,\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n \
- \ },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\
- \n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\
+ ,\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n\
+ \ \"goLiveDate\": \"2025-02-13T00:00:00+00:00\"\r\n },\r\n \"location\"\
+ : \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\
\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1184'
+ - '1232'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:44 GMT
+ - Mon, 03 Mar 2025 10:15:41 GMT
expires:
- '-1'
pragma:
@@ -223,11 +229,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMImageFromLocation3Min;12994,Microsoft.Compute/GetVMImageFromLocation30Min;73994
+ - Microsoft.Compute/GetVMImageFromLocation3Min;12999,Microsoft.Compute/GetVMImageFromLocation30Min;73988
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 7FF3AFE4CBC240CD9B70E0DA97C0F5F9 Ref B: TYO201100113023 Ref C: 2024-08-26T09:57:44Z'
+ - 'Ref A: 57C0C6A9C31040D5851E17FF0C9A0C4C Ref B: SEL221051801009 Ref C: 2025-03-03T10:15:41Z'
status:
code: 200
message: OK
@@ -246,12 +252,12 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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
@@ -259,8 +265,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
@@ -268,8 +275,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
@@ -277,8 +285,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
@@ -286,8 +295,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
@@ -295,32 +305,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
@@ -335,13 +398,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -351,7 +414,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -361,7 +424,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -371,7 +434,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -380,20 +443,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
@@ -403,7 +466,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -413,7 +476,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -422,7 +485,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -431,7 +494,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -440,7 +503,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -449,7 +512,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -458,7 +521,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -467,7 +530,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -477,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"],"capabilities":"None"},{"resourceType":"vpnSites","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -486,7 +549,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -495,8 +558,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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
@@ -505,8 +568,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -515,8 +578,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -525,8 +588,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -536,7 +599,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -546,7 +609,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -555,7 +618,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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
@@ -565,7 +628,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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
@@ -575,7 +638,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -584,15 +647,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
@@ -601,7 +664,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -610,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"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags,
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","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
@@ -620,16 +683,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -638,8 +701,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","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":"2024-07-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
@@ -648,15 +711,16 @@ 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,
- SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","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":"CrossResourceGroupResourceMove,
+ SystemAssignedResourceIdentity, 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
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -665,7 +729,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US 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-07-01","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
@@ -675,9 +739,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-09-01-preview","2024-07-01","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-09-01-preview","2024-07-01","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":"networkSecurityPerimeters","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
@@ -687,8 +751,20 @@ 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":["2024-07-01","2024-06-01-preview","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":"2024-07-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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
+ South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland
+ West","East Asia","South Africa North","UK South","South India","Australia
+ Southeast","France South","West US 2","Sweden Central","Japan West","Norway
+ 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","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-06-01-preview","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
@@ -698,8 +774,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":["2024-07-01","2024-06-01-preview","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
@@ -709,8 +785,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-09-01-preview","2024-07-01","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
@@ -720,8 +796,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-09-01-preview","2024-07-01","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
@@ -731,8 +807,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
@@ -742,8 +818,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-09-01-preview","2024-07-01","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
@@ -753,17 +829,34 @@ 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-09-01-preview","2024-07-01","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","West Central US","East US 2 EUAP","Central
+ US EUAP"],"apiVersions":["2024-07-01","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","West Central US","East US 2 EUAP","Central
+ US EUAP"],"apiVersions":["2024-07-01","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-07-01","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-07-01","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
@@ -773,8 +866,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":["2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-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
@@ -782,7 +875,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-07-01","2024-05-01","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
@@ -790,7 +883,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-07-01","2024-05-01","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
@@ -800,8 +893,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-07-01","2024-05-01","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
@@ -812,8 +905,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-07-01","2024-05-01","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-07-01","2024-05-01","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-07-01","2024-05-01","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-07-01","2024-05-01","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
@@ -823,8 +917,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-07-01","2024-05-01","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
@@ -835,11 +929,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-07-01","2024-05-01","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-07-01","2024-05-01","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
@@ -849,13 +943,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -865,7 +959,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -874,7 +968,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -883,14 +977,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
@@ -900,7 +995,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -909,20 +1004,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
@@ -932,7 +1027,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -941,7 +1036,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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
@@ -950,20 +1045,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
@@ -973,13 +1068,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -989,7 +1084,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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
@@ -999,13 +1094,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
@@ -1015,7 +1110,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
@@ -1023,8 +1118,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","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
@@ -1033,14 +1128,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1050,7 +1145,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1060,7 +1155,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1070,7 +1165,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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
@@ -1080,7 +1175,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1090,7 +1185,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1100,7 +1195,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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
@@ -1109,20 +1204,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
@@ -1132,7 +1227,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1142,7 +1237,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1152,7 +1247,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1162,8 +1257,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1172,7 +1267,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1181,7 +1276,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1190,7 +1285,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1199,7 +1294,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","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
@@ -1208,7 +1303,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","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
@@ -1217,7 +1312,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1226,7 +1321,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1235,7 +1330,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1244,7 +1339,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
@@ -1253,7 +1348,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
@@ -1262,7 +1357,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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
@@ -1271,7 +1366,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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
@@ -1280,7 +1375,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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
@@ -1289,7 +1384,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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
@@ -1298,7 +1393,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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
@@ -1307,7 +1402,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1316,7 +1411,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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
@@ -1325,7 +1420,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -1334,7 +1429,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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
@@ -1343,7 +1438,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1352,7 +1447,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1361,7 +1456,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1370,7 +1465,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -1379,7 +1474,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -1388,7 +1483,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -1398,13 +1493,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -1414,7 +1509,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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
@@ -1423,7 +1518,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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
@@ -1432,8 +1527,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","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
@@ -1443,7 +1538,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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
@@ -1452,7 +1547,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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
@@ -1462,7 +1557,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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
@@ -1471,7 +1566,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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
@@ -1480,7 +1575,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -1489,7 +1584,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -1498,7 +1593,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -1507,7 +1602,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -1516,7 +1611,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -1540,31 +1635,19 @@ 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,
- 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
- 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
- North","Germany West Central","Switzerland West","East Asia","South Africa
- North","UK South","South India","Australia Southeast","France South","West
- US 2","Sweden Central","Japan West","Norway 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"],"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 STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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":"networkWatchers/lenses","locations":["Central
+ US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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'
+ - '207006'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:47 GMT
+ - Mon, 03 Mar 2025 10:15:43 GMT
expires:
- '-1'
pragma:
@@ -1578,7 +1661,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: B0C98511B7DB48BE9BD7B45E83A54CCE Ref B: TYO201100117009 Ref C: 2024-08-26T09:57:45Z'
+ - 'Ref A: 05F1F726C1A145E89BBA596928F0F082 Ref B: SEL221051503021 Ref C: 2025-03-03T10:15:42Z'
status:
code: 200
message: OK
@@ -1597,9 +1680,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-07-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/virtualNetworks/vnet1''
@@ -1613,7 +1696,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:47 GMT
+ - Mon, 03 Mar 2025 10:15:44 GMT
expires:
- '-1'
pragma:
@@ -1627,7 +1710,7 @@ interactions:
x-ms-failure-cause:
- gateway
x-msedge-ref:
- - 'Ref A: 5FCD48DD79AB4962A9F1627A39314980 Ref B: TYO201100117033 Ref C: 2024-08-26T09:57:47Z'
+ - 'Ref A: E553A70770244AD2A0F3F9A39A5C8D57 Ref B: SEL221051804023 Ref C: 2025-03-03T10:15:44Z'
status:
code: 404
message: Not Found
@@ -1650,28 +1733,34 @@ interactions:
,\n \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\"\
: {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"\
type\": \"object\",\n \"value\": {\n \"Linux\": {\n \"\
- CentOS85Gen2\": {\n \"publisher\": \"OpenLogic\",\n \
- \ \"offer\": \"CentOS\",\n \"sku\": \"8_5-gen2\",\n \
- \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \
- \ },\n \"Debian11\": {\n \"publisher\": \"Debian\"\
- ,\n \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\"\
- ,\n \"version\": \"latest\",\n \"architecture\": \"\
- x64\"\n },\n \"FlatcarLinuxFreeGen2\": {\n \"\
- publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\"\
- ,\n \"sku\": \"stable-gen2\",\n \"version\": \"latest\"\
- ,\n \"architecture\": \"x64\"\n },\n \"OpenSuseLeap154Gen2\"\
- : {\n \"publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\"\
- ,\n \"sku\": \"gen2\",\n \"version\": \"latest\",\n\
- \ \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\"\
- : {\n \"publisher\": \"RedHat\",\n \"offer\": \"\
- RHEL\",\n \"sku\": \"8-lvm-gen2\",\n \"version\": \
- \ \"latest\",\n \"architecture\": \"x64\"\n },\n \
- \ \"SuseSles15SP3\": {\n \"publisher\": \"SUSE\",\n \
- \ \"offer\": \"sles-15-sp3\",\n \"sku\": \"gen2\",\n \
- \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \
- \ },\n \"Ubuntu2204\": {\n \"publisher\": \"\
- Canonical\",\n \"offer\": \"0001-com-ubuntu-server-jammy\",\n\
- \ \"sku\": \"22_04-lts-gen2\",\n \"version\": \"latest\"\
+ CentOS85Gen2\": {\n \"publisher\": \"OpenLogic\",\n \
+ \ \"offer\": \"CentOS\",\n \"sku\": \"8_5-gen2\",\n \
+ \ \"version\": \"latest\",\n \"architecture\": \"x64\"\n \
+ \ },\n \"Debian11\": {\n \"publisher\": \"Debian\"\
+ ,\n \"offer\": \"debian-11\",\n \"sku\": \"11-backports-gen2\"\
+ ,\n \"version\": \"latest\",\n \"architecture\": \"\
+ x64\"\n },\n \"OpenSuseLeap154Gen2\": {\n \"\
+ publisher\": \"SUSE\",\n \"offer\": \"openSUSE-leap-15-4\",\n \
+ \ \"sku\": \"gen2\",\n \"version\": \"latest\",\n \
+ \ \"architecture\": \"x64\"\n },\n \"RHELRaw8LVMGen2\"\
+ : {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\"\
+ ,\n \"sku\": \"8-lvm-gen2\",\n \"version\": \"latest\"\
+ ,\n \"architecture\": \"x64\"\n },\n \"SuseSles15SP5\"\
+ : {\n \"publisher\": \"SUSE\",\n \"offer\": \"sles-15-sp5\"\
+ ,\n \"sku\": \"gen2\",\n \"version\": \"latest\",\n\
+ \ \"architecture\": \"x64\"\n },\n \"Ubuntu2204\"\
+ : {\n \"publisher\": \"Canonical\",\n \"offer\": \"\
+ 0001-com-ubuntu-server-jammy\",\n \"sku\": \"22_04-lts-gen2\",\n\
+ \ \"version\": \"latest\",\n \"architecture\": \"x64\"\
+ \n },\n \"Ubuntu2404\": {\n \"publisher\": \"\
+ Canonical\",\n \"offer\": \"ubuntu-24_04-lts\",\n \"\
+ sku\": \"server\",\n \"version\": \"latest\",\n \"architecture\"\
+ : \"x64\"\n },\n \"Ubuntu2404Pro\": {\n \"publisher\"\
+ : \"Canonical\",\n \"offer\": \"ubuntu-24_04-lts\",\n \
+ \ \"sku\": \"ubuntu-pro\",\n \"version\": \"latest\",\n \
+ \ \"architecture\": \"x64\"\n },\n \"FlatcarLinuxFreeGen2\"\
+ : {\n \"publisher\": \"kinvolk\",\n \"offer\": \"flatcar-container-linux-free\"\
+ ,\n \"sku\": \"stable-gen2\",\n \"version\": \"latest\"\
,\n \"architecture\": \"x64\"\n }\n },\n \
\ \"Windows\": {\n \"Win2022Datacenter\": {\n \"publisher\"\
: \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n\
@@ -1705,7 +1794,7 @@ interactions:
connection:
- keep-alive
content-length:
- - '3384'
+ - '3790'
content-security-policy:
- default-src 'none'; style-src 'unsafe-inline'; sandbox
content-type:
@@ -1713,13 +1802,13 @@ interactions:
cross-origin-resource-policy:
- cross-origin
date:
- - Mon, 26 Aug 2024 09:57:48 GMT
+ - Mon, 03 Mar 2025 10:15:45 GMT
etag:
- - W/"8f34071e3f10c641931f33307d1319d34bae37f557ea31022a455502dae9ebc2"
+ - W/"0f53b56eda413b90fc6365dd4848831171968adfbf5b440c8da07b5866a97d67"
expires:
- - Mon, 26 Aug 2024 10:02:48 GMT
+ - Mon, 03 Mar 2025 10:20:45 GMT
source-age:
- - '182'
+ - '260'
strict-transport-security:
- max-age=31536000
vary:
@@ -1733,15 +1822,15 @@ interactions:
x-content-type-options:
- nosniff
x-fastly-request-id:
- - eb0213952dd835437f0bae9a35b069876c85bafd
+ - 65f5286553e27a4d335fe9457a0506ce031024f0
x-frame-options:
- deny
x-github-request-id:
- - 8060:3C8180:13D484:1818B3:66CC1340
+ - 5FB8:3A7811:1709A9:1968C8:67C4F15A
x-served-by:
- - cache-tyo11933-TYO
+ - cache-sin-wsss1830049-SIN
x-timer:
- - S1724666268.468555,VS0,VE1
+ - S1740996945.361972,VS0,VE1
x-xss-protection:
- 1; mode=block
status:
@@ -1762,13 +1851,13 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions?$top=1&$orderby=name%20desc&api-version=2024-07-01
response:
body:
- string: "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\"\
- ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\
+ string: "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\"\
+ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\
\r\n }\r\n]"
headers:
cache-control:
@@ -1778,7 +1867,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:48 GMT
+ - Mon, 03 Mar 2025 10:15:45 GMT
expires:
- '-1'
pragma:
@@ -1790,11 +1879,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15990,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43990
+ - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15998,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43986
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3748'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 7FA75559F4534ECBBDF43E058520F982 Ref B: TYO201151001042 Ref C: 2024-08-26T09:57:48Z'
+ - 'Ref A: 0DEA40A3FBA040539901E2C0D1523FF1 Ref B: SEL221051503049 Ref C: 2025-03-03T10:15:45Z'
status:
code: 200
message: OK
@@ -1813,9 +1902,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2655.240810?api-version=2024-07-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.3207.250210?api-version=2024-07-01
response:
body:
string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \
@@ -1831,19 +1920,19 @@ interactions:
,\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"\
name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n \
\ }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\
- ,\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n \
- \ },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\
- \n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\
+ ,\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n\
+ \ \"goLiveDate\": \"2025-02-13T00:00:00+00:00\"\r\n },\r\n \"location\"\
+ : \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\
\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1184'
+ - '1232'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:49 GMT
+ - Mon, 03 Mar 2025 10:15:46 GMT
expires:
- '-1'
pragma:
@@ -1855,11 +1944,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMImageFromLocation3Min;12991,Microsoft.Compute/GetVMImageFromLocation30Min;73991
+ - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73987
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 879F5FB8E00847E5A8C7BFC75935E26C Ref B: TYO201100114045 Ref C: 2024-08-26T09:57:49Z'
+ - 'Ref A: 76489342E3274F57AFB58C80B768D31B Ref B: SEL221051801027 Ref C: 2025-03-03T10:15:46Z'
status:
code: 200
message: OK
@@ -1878,13 +1967,13 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions?$top=1&$orderby=name%20desc&api-version=2024-07-01
response:
body:
- string: "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\"\
- ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\
+ string: "[\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.3207.250210\"\
+ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\
\r\n }\r\n]"
headers:
cache-control:
@@ -1894,7 +1983,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:50 GMT
+ - Mon, 03 Mar 2025 10:15:47 GMT
expires:
- '-1'
pragma:
@@ -1906,11 +1995,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15989,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43989
+ - Microsoft.Compute/ListVMImagesVersionsFromLocation3Min;15997,Microsoft.Compute/ListVMImagesVersionsFromLocation30Min;43985
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 235BC42C8FD94A8588AAD87FE8BCBCA1 Ref B: TYO201100114025 Ref C: 2024-08-26T09:57:50Z'
+ - 'Ref A: 5BCDE8EC083F4C4690FB3F0FB598742A Ref B: SEL221051805045 Ref C: 2025-03-03T10:15:47Z'
status:
code: 200
message: OK
@@ -1929,9 +2018,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.2655.240810?api-version=2024-07-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2022-datacenter-g2/versions/20348.3207.250210?api-version=2024-07-01
response:
body:
string: "{\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V2\",\r\n \
@@ -1947,19 +2036,19 @@ interactions:
,\r\n \"value\": \"SCSI, NVMe\"\r\n },\r\n {\r\n \"\
name\": \"IsHibernateSupported\",\r\n \"value\": \"True\"\r\n \
\ }\r\n ],\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Windows\"\
- ,\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": []\r\n \
- \ },\r\n \"location\": \"eastus\",\r\n \"name\": \"20348.2655.240810\",\r\
- \n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.2655.240810\"\
+ ,\r\n \"sizeInGb\": 127\r\n },\r\n \"dataDiskImages\": [],\r\n\
+ \ \"goLiveDate\": \"2025-02-13T00:00:00+00:00\"\r\n },\r\n \"location\"\
+ : \"eastus\",\r\n \"name\": \"20348.3207.250210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2022-datacenter-g2/Versions/20348.3207.250210\"\
\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1184'
+ - '1232'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:51 GMT
+ - Mon, 03 Mar 2025 10:15:48 GMT
expires:
- '-1'
pragma:
@@ -1971,11 +2060,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMImageFromLocation3Min;12990,Microsoft.Compute/GetVMImageFromLocation30Min;73990
+ - Microsoft.Compute/GetVMImageFromLocation3Min;12997,Microsoft.Compute/GetVMImageFromLocation30Min;73986
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: C27E622FB48E4BFC83769A901D99A813 Ref B: TYO201100116007 Ref C: 2024-08-26T09:57:51Z'
+ - 'Ref A: 66400BFC99AD4C0E97413F0C9E350567 Ref B: SEL221051503031 Ref C: 2025-03-03T10:15:48Z'
status:
code: 200
message: OK
@@ -1994,12 +2083,12 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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
@@ -2007,8 +2096,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
@@ -2016,8 +2106,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
@@ -2025,8 +2116,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
@@ -2034,8 +2126,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
@@ -2043,32 +2136,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
@@ -2083,13 +2229,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2099,7 +2245,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2109,7 +2255,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2119,7 +2265,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2128,20 +2274,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
@@ -2151,7 +2297,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2161,7 +2307,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2170,7 +2316,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2179,7 +2325,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2188,7 +2334,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -2197,7 +2343,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -2206,7 +2352,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -2215,7 +2361,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2225,7 +2371,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2234,7 +2380,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2243,8 +2389,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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
@@ -2253,8 +2399,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2263,8 +2409,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2273,8 +2419,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -2284,7 +2430,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -2294,7 +2440,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -2303,7 +2449,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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
@@ -2313,7 +2459,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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
@@ -2323,7 +2469,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -2332,15 +2478,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
@@ -2349,7 +2495,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -2358,7 +2504,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","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
@@ -2368,16 +2514,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2386,8 +2532,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","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":"2024-07-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
@@ -2396,15 +2542,16 @@ 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,
- SupportsTags, SupportsLocation"},{"resourceType":"queryExpressRoutePortsBandwidth","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":"CrossResourceGroupResourceMove,
+ SystemAssignedResourceIdentity, 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
West","Brazil South","Australia East","Australia Southeast","Central India","South
@@ -2413,7 +2560,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US 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-07-01","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
@@ -2423,9 +2570,21 @@ 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-09-01-preview","2024-07-01","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-09-01-preview","2024-07-01","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":"networkSecurityPerimeters","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
+ South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland
+ West","East Asia","South Africa North","UK South","South India","Australia
+ Southeast","France South","West US 2","Sweden Central","Japan West","Norway
+ 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","New
+ Zealand North","East US 2 EUAP","Central US EUAP","East US STG"],"apiVersions":["2024-07-01","2024-06-01-preview","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":"2024-07-01","capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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
@@ -2435,8 +2594,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":["2024-07-01","2024-06-01-preview","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
@@ -2446,8 +2605,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":["2024-07-01","2024-06-01-preview","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
@@ -2457,8 +2616,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-09-01-preview","2024-07-01","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
@@ -2468,8 +2627,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-09-01-preview","2024-07-01","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
@@ -2479,8 +2638,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
@@ -2490,8 +2649,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-09-01-preview","2024-07-01","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
@@ -2501,17 +2660,34 @@ 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-09-01-preview","2024-07-01","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","West Central US","East US 2 EUAP","Central
+ US EUAP"],"apiVersions":["2024-07-01","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","West Central US","East US 2 EUAP","Central
+ US EUAP"],"apiVersions":["2024-07-01","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-07-01","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-07-01","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
@@ -2521,8 +2697,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":["2024-07-01","2024-06-01-preview"],"defaultApiVersion":"2024-06-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
@@ -2530,7 +2706,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-07-01","2024-05-01","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
@@ -2538,7 +2714,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-07-01","2024-05-01","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
@@ -2548,8 +2724,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-07-01","2024-05-01","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
@@ -2560,8 +2736,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-07-01","2024-05-01","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-07-01","2024-05-01","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-07-01","2024-05-01","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-07-01","2024-05-01","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
@@ -2571,8 +2748,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-07-01","2024-05-01","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
@@ -2583,11 +2760,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-07-01","2024-05-01","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-07-01","2024-05-01","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
@@ -2597,13 +2774,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2613,7 +2790,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2622,7 +2799,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
@@ -2631,14 +2808,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
@@ -2648,7 +2826,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2657,20 +2835,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
@@ -2680,7 +2858,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -2689,7 +2867,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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
@@ -2698,20 +2876,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
@@ -2721,13 +2899,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2737,7 +2915,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","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
@@ -2747,13 +2925,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
@@ -2763,7 +2941,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
@@ -2771,8 +2949,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","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
@@ -2781,14 +2959,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2798,7 +2976,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2808,7 +2986,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2818,7 +2996,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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
@@ -2828,7 +3006,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -2838,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","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2848,7 +3026,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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
@@ -2857,20 +3035,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
@@ -2880,7 +3058,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2890,7 +3068,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2900,7 +3078,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2910,8 +3088,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2920,7 +3098,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2929,7 +3107,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2938,7 +3116,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2947,7 +3125,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","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
@@ -2956,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"],"capabilities":"SupportsExtension"},{"resourceType":"locations/usages","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","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
@@ -2965,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","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2974,7 +3152,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -2983,7 +3161,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -2992,7 +3170,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
@@ -3001,7 +3179,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
@@ -3010,7 +3188,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","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
@@ -3019,7 +3197,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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
@@ -3028,7 +3206,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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
@@ -3037,7 +3215,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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
@@ -3046,7 +3224,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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
@@ -3055,7 +3233,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -3064,7 +3242,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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
@@ -3073,7 +3251,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -3082,7 +3260,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","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
@@ -3091,7 +3269,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -3100,7 +3278,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -3109,7 +3287,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -3118,7 +3296,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
@@ -3127,7 +3305,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
@@ -3136,7 +3314,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -3146,13 +3324,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
@@ -3162,7 +3340,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","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
@@ -3171,7 +3349,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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
@@ -3180,8 +3358,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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","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
@@ -3191,7 +3369,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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
@@ -3200,7 +3378,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","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
@@ -3210,7 +3388,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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
@@ -3219,7 +3397,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","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
@@ -3228,7 +3406,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -3237,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"],"capabilities":"None"},{"resourceType":"locations/getPacketTagging","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -3246,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"],"capabilities":"None"},{"resourceType":"locations/rnmEffectiveRouteTable","locations":["West
+ Central","New Zealand North","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -3255,7 +3433,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -3264,7 +3442,7 @@ interactions:
Central","South Africa North","UAE North","Switzerland North","Germany West
Central","Norway East","West US 3","Jio India West","Sweden Central","Qatar
Central","Poland Central","Italy North","Israel Central","Mexico Central","Spain
- Central","Central US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","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
@@ -3288,31 +3466,19 @@ 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,
- 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
- 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
- North","Germany West Central","Switzerland West","East Asia","South Africa
- North","UK South","South India","Australia Southeast","France South","West
- US 2","Sweden Central","Japan West","Norway 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"],"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 STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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":"networkWatchers/lenses","locations":["Central
+ US EUAP","East US 2 EUAP","East US STG"],"apiVersions":["2024-07-01","2024-05-01","2024-03-01","2024-01-01","2023-11-01","2023-09-01","2023-06-01","2023-05-01","2023-04-01","2023-02-01","2022-11-01","2022-09-01","2022-07-01","2022-05-01","2022-01-01","2021-12-01","2021-08-01","2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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'
+ - '207006'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:51 GMT
+ - Mon, 03 Mar 2025 10:15:50 GMT
expires:
- '-1'
pragma:
@@ -3326,7 +3492,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 27B517CF83304F5796D34089586A22E4 Ref B: TYO201151002062 Ref C: 2024-08-26T09:57:52Z'
+ - 'Ref A: 6C4DDED4F5254F4990A22A2D323EE4CA Ref B: SEL221051802025 Ref C: 2025-03-03T10:15:49Z'
status:
code: 200
message: OK
@@ -3345,9 +3511,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2024-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2024-07-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Network/virtualNetworks/vnet1''
@@ -3361,7 +3527,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:52 GMT
+ - Mon, 03 Mar 2025 10:15:51 GMT
expires:
- '-1'
pragma:
@@ -3375,7 +3541,7 @@ interactions:
x-ms-failure-cause:
- gateway
x-msedge-ref:
- - 'Ref A: 130B20A895F341CC8C01A75E6F6E92DD Ref B: TYO201151001040 Ref C: 2024-08-26T09:57:53Z'
+ - 'Ref A: 6B6A2A09067D4E5590292512C3AE636F Ref B: SEL221051802051 Ref C: 2025-03-03T10:15:51Z'
status:
code: 404
message: Not Found
@@ -3387,26 +3553,26 @@ interactions:
"eastus", "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": "eastus", "tags":
+ "name": "vm000002NSG", "apiVersion": "2015-06-15", "location": "eastus", "tags":
{}, "dependsOn": []}, {"apiVersion": "2022-01-01", "type": "Microsoft.Network/publicIPAddresses",
- "name": "vm1PublicIP", "location": "eastus", "tags": {}, "dependsOn": [], "properties":
- {"publicIPAllocationMethod": "Static"}, "sku": {"name": "Standard"}}, {"apiVersion":
- "2015-06-15", "type": "Microsoft.Network/networkInterfaces", "name": "vm1VMNic",
- "location": "eastus", "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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
- "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"}}}],
- "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"}}},
+ "name": "vm000002PublicIP", "location": "eastus", "tags": {}, "dependsOn": [],
+ "properties": {"publicIPAllocationMethod": "Static"}, "sku": {"name": "Standard"}},
+ {"apiVersion": "2015-06-15", "type": "Microsoft.Network/networkInterfaces",
+ "name": "vm000002VMNic", "location": "eastus", "tags": {}, "dependsOn": ["Microsoft.Network/virtualNetworks/vnet1",
+ "Microsoft.Network/networkSecurityGroups/vm000002NSG", "Microsoft.Network/publicIpAddresses/vm000002PublicIP"],
+ "properties": {"ipConfigurations": [{"name": "ipconfigvm000002", "properties":
+ {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},
+ "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000002PublicIP"}}}],
+ "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000002NSG"}}},
{"apiVersion": "2024-07-01", "type": "Microsoft.Compute/virtualMachines", "name":
- "vm1", "location": "eastus", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm1VMNic"],
+ "vm000002", "location": "eastus", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm000002VMNic"],
"properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile":
- {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic",
+ {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000002VMNic",
"properties": {"deleteOption": null}}]}, "storageProfile": {"osDisk": {"createOption":
"fromImage", "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType":
null}}, "imageReference": {"publisher": "MicrosoftWindowsServer", "offer": "WindowsServer",
"sku": "2022-datacenter-g2", "version": "latest"}}, "osProfile": {"computerName":
- "vm1", "adminUsername": "clitest1234", "adminPassword": "[parameters(''adminPassword'')]"},
+ "vm000002", "adminUsername": "clitest1234", "adminPassword": "[parameters(''adminPassword'')]"},
"licenseType": "Windows_Server", "securityProfile": {"securityType": "TrustedLaunch",
"uefiSettings": {"secureBootEnabled": true, "vTpmEnabled": true}}}}], "outputs":
{}}, "parameters": {"adminPassword": {"value": "Test123456789#"}}, "mode": "incremental"}}'
@@ -3420,30 +3586,30 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '3040'
+ - '3100'
Content-Type:
- application/json
ParameterSetName:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_3wFsk7qXgTP0sXdRHenAIRG0tlBJabx7","name":"vm_deploy_3wFsk7qXgTP0sXdRHenAIRG0tlBJabx7","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6030756031680361298","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-26T09:57:57.1575337Z","duration":"PT0.0002189S","correlationId":"74d19320-f7d5-43a2-884a-14f06829d367","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus"]},{"resourceType":"networkSecurityGroups","locations":["eastus"]},{"resourceType":"publicIPAddresses","locations":["eastus"]},{"resourceType":"networkInterfaces","locations":["eastus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_RF8xi80fahBiwe3yS1r8kqyzjUM5XEWr","name":"vm_deploy_RF8xi80fahBiwe3yS1r8kqyzjUM5XEWr","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17533313179947212986","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-03-03T10:15:54.5521453Z","duration":"PT3.5823946S","correlationId":"09e8336d-c28b-4ef7-b57f-f5a3d34d6e60","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus"]},{"resourceType":"networkSecurityGroups","locations":["eastus"]},{"resourceType":"publicIPAddresses","locations":["eastus"]},{"resourceType":"networkInterfaces","locations":["eastus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000002NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm000002NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000002PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm000002PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000002VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000002VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000002","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm000002"}]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_3wFsk7qXgTP0sXdRHenAIRG0tlBJabx7/operationStatuses/08584769406105164177?api-version=2022-09-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_RF8xi80fahBiwe3yS1r8kqyzjUM5XEWr/operationStatuses/08584606099309134956?api-version=2022-09-01&t=638765937605521708&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=PEb5kABKJO7YLIqbiPyIM-5r5tazWLMde5gAvVKiRnfSmioeHP5v_h3UsvIat8ISzpqpoSCJ41pq_cNuf9I8Mm9787PqgNqO4EnYVrPceP0xaamVhLnUnWVz9iYySSiL0a_Dg62E1jjcSLSRx0-dOX0owRsu30fv8X_CLLOWzC8bqONnMixSXUUXMmExPfBqx_QD2HLDJT3Tah3FMk3VcMNa0DBpkz6UBfZ9wjfkvc_LesoCJq1KrAqgs8DYznU4L5M7VcUJk9DEVscP4iAzFUXJV_WTFf9AxLehj6mvXLDzQTmG7-yOjVumYO5PZVNR-QuerjV4G9gkcwUgy65aXw&h=w_aaR-NcPUWmto9s1jtPUmIEiaMtYDoDapJMROLTxbM
cache-control:
- no-cache
content-length:
- - '2364'
+ - '2415'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:57 GMT
+ - Mon, 03 Mar 2025 10:16:00 GMT
expires:
- '-1'
pragma:
@@ -3455,13 +3621,13 @@ interactions:
x-content-type-options:
- nosniff
x-ms-deployment-engine-version:
- - 1.95.0
+ - 1.245.0
x-ms-ratelimit-remaining-subscription-global-writes:
- '2999'
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: 98D5B9E49365425CA074674CD0FEA5E5 Ref B: TYO201100115009 Ref C: 2024-08-26T09:57:53Z'
+ - 'Ref A: 494BCA36F6544150A4F9679941774F44 Ref B: SEL221051504037 Ref C: 2025-03-03T10:15:52Z'
status:
code: 201
message: Created
@@ -3480,9 +3646,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769406105164177?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584606099309134956?api-version=2022-09-01&t=638765937605521708&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=PEb5kABKJO7YLIqbiPyIM-5r5tazWLMde5gAvVKiRnfSmioeHP5v_h3UsvIat8ISzpqpoSCJ41pq_cNuf9I8Mm9787PqgNqO4EnYVrPceP0xaamVhLnUnWVz9iYySSiL0a_Dg62E1jjcSLSRx0-dOX0owRsu30fv8X_CLLOWzC8bqONnMixSXUUXMmExPfBqx_QD2HLDJT3Tah3FMk3VcMNa0DBpkz6UBfZ9wjfkvc_LesoCJq1KrAqgs8DYznU4L5M7VcUJk9DEVscP4iAzFUXJV_WTFf9AxLehj6mvXLDzQTmG7-yOjVumYO5PZVNR-QuerjV4G9gkcwUgy65aXw&h=w_aaR-NcPUWmto9s1jtPUmIEiaMtYDoDapJMROLTxbM
response:
body:
string: '{"status":"Running"}'
@@ -3494,7 +3660,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:57:57 GMT
+ - Mon, 03 Mar 2025 10:16:01 GMT
expires:
- '-1'
pragma:
@@ -3508,7 +3674,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 0F4C4BA6862C4F51B238193415D6608A Ref B: TYO201100115009 Ref C: 2024-08-26T09:57:58Z'
+ - 'Ref A: C5E58883349B4917A1316CD57B05E11F Ref B: SEL221051504037 Ref C: 2025-03-03T10:16:00Z'
status:
code: 200
message: OK
@@ -3527,9 +3693,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769406105164177?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584606099309134956?api-version=2022-09-01&t=638765937605521708&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=PEb5kABKJO7YLIqbiPyIM-5r5tazWLMde5gAvVKiRnfSmioeHP5v_h3UsvIat8ISzpqpoSCJ41pq_cNuf9I8Mm9787PqgNqO4EnYVrPceP0xaamVhLnUnWVz9iYySSiL0a_Dg62E1jjcSLSRx0-dOX0owRsu30fv8X_CLLOWzC8bqONnMixSXUUXMmExPfBqx_QD2HLDJT3Tah3FMk3VcMNa0DBpkz6UBfZ9wjfkvc_LesoCJq1KrAqgs8DYznU4L5M7VcUJk9DEVscP4iAzFUXJV_WTFf9AxLehj6mvXLDzQTmG7-yOjVumYO5PZVNR-QuerjV4G9gkcwUgy65aXw&h=w_aaR-NcPUWmto9s1jtPUmIEiaMtYDoDapJMROLTxbM
response:
body:
string: '{"status":"Running"}'
@@ -3541,7 +3707,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:58:29 GMT
+ - Mon, 03 Mar 2025 10:16:32 GMT
expires:
- '-1'
pragma:
@@ -3553,9 +3719,56 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3748'
+ - '3749'
+ x-msedge-ref:
+ - 'Ref A: CAFE1E7F62024916B908BBDC727ECC14 Ref B: SEL221051504037 Ref C: 2025-03-03T10:16:31Z'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -l -g -n --image --admin-username --admin-password --license-type --subnet
+ --vnet-name --nsg-rule
+ User-Agent:
+ - AZURECLI/2.70.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/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584606099309134956?api-version=2022-09-01&t=638765937605521708&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=PEb5kABKJO7YLIqbiPyIM-5r5tazWLMde5gAvVKiRnfSmioeHP5v_h3UsvIat8ISzpqpoSCJ41pq_cNuf9I8Mm9787PqgNqO4EnYVrPceP0xaamVhLnUnWVz9iYySSiL0a_Dg62E1jjcSLSRx0-dOX0owRsu30fv8X_CLLOWzC8bqONnMixSXUUXMmExPfBqx_QD2HLDJT3Tah3FMk3VcMNa0DBpkz6UBfZ9wjfkvc_LesoCJq1KrAqgs8DYznU4L5M7VcUJk9DEVscP4iAzFUXJV_WTFf9AxLehj6mvXLDzQTmG7-yOjVumYO5PZVNR-QuerjV4G9gkcwUgy65aXw&h=w_aaR-NcPUWmto9s1jtPUmIEiaMtYDoDapJMROLTxbM
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 03 Mar 2025 10:17: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: B357CC999A46415299DC88AFF5DCCB98 Ref B: TYO201100115009 Ref C: 2024-08-26T09:58:28Z'
+ - 'Ref A: 582A80D1A0344F25A39275A4DC9EA41C Ref B: SEL221051504037 Ref C: 2025-03-03T10:17:02Z'
status:
code: 200
message: OK
@@ -3574,9 +3787,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769406105164177?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584606099309134956?api-version=2022-09-01&t=638765937605521708&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=PEb5kABKJO7YLIqbiPyIM-5r5tazWLMde5gAvVKiRnfSmioeHP5v_h3UsvIat8ISzpqpoSCJ41pq_cNuf9I8Mm9787PqgNqO4EnYVrPceP0xaamVhLnUnWVz9iYySSiL0a_Dg62E1jjcSLSRx0-dOX0owRsu30fv8X_CLLOWzC8bqONnMixSXUUXMmExPfBqx_QD2HLDJT3Tah3FMk3VcMNa0DBpkz6UBfZ9wjfkvc_LesoCJq1KrAqgs8DYznU4L5M7VcUJk9DEVscP4iAzFUXJV_WTFf9AxLehj6mvXLDzQTmG7-yOjVumYO5PZVNR-QuerjV4G9gkcwUgy65aXw&h=w_aaR-NcPUWmto9s1jtPUmIEiaMtYDoDapJMROLTxbM
response:
body:
string: '{"status":"Running"}'
@@ -3588,7 +3801,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:58:59 GMT
+ - Mon, 03 Mar 2025 10:17:34 GMT
expires:
- '-1'
pragma:
@@ -3602,7 +3815,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 8B36A840B3254E21BE1B6A350B9F4C7E Ref B: TYO201100115009 Ref C: 2024-08-26T09:58:59Z'
+ - 'Ref A: E77CE9A5142E484599943BAD4088F837 Ref B: SEL221051504037 Ref C: 2025-03-03T10:17:33Z'
status:
code: 200
message: OK
@@ -3621,9 +3834,9 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584769406105164177?api-version=2022-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08584606099309134956?api-version=2022-09-01&t=638765937605521708&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=PEb5kABKJO7YLIqbiPyIM-5r5tazWLMde5gAvVKiRnfSmioeHP5v_h3UsvIat8ISzpqpoSCJ41pq_cNuf9I8Mm9787PqgNqO4EnYVrPceP0xaamVhLnUnWVz9iYySSiL0a_Dg62E1jjcSLSRx0-dOX0owRsu30fv8X_CLLOWzC8bqONnMixSXUUXMmExPfBqx_QD2HLDJT3Tah3FMk3VcMNa0DBpkz6UBfZ9wjfkvc_LesoCJq1KrAqgs8DYznU4L5M7VcUJk9DEVscP4iAzFUXJV_WTFf9AxLehj6mvXLDzQTmG7-yOjVumYO5PZVNR-QuerjV4G9gkcwUgy65aXw&h=w_aaR-NcPUWmto9s1jtPUmIEiaMtYDoDapJMROLTxbM
response:
body:
string: '{"status":"Succeeded"}'
@@ -3635,7 +3848,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:30 GMT
+ - Mon, 03 Mar 2025 10:18:05 GMT
expires:
- '-1'
pragma:
@@ -3649,7 +3862,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 0AD626C4147C4EEB940E37F1640312DD Ref B: TYO201100115009 Ref C: 2024-08-26T09:59:30Z'
+ - 'Ref A: 55F5B987632847D3B33CE10CD9B4DD42 Ref B: SEL221051504037 Ref C: 2025-03-03T10:18:04Z'
status:
code: 200
message: OK
@@ -3668,21 +3881,21 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2022-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_3wFsk7qXgTP0sXdRHenAIRG0tlBJabx7","name":"vm_deploy_3wFsk7qXgTP0sXdRHenAIRG0tlBJabx7","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6030756031680361298","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-26T09:59:23.047117Z","duration":"PT1M25.8898022S","correlationId":"74d19320-f7d5-43a2-884a-14f06829d367","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus"]},{"resourceType":"networkSecurityGroups","locations":["eastus"]},{"resourceType":"publicIPAddresses","locations":["eastus"]},{"resourceType":"networkInterfaces","locations":["eastus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_RF8xi80fahBiwe3yS1r8kqyzjUM5XEWr","name":"vm_deploy_RF8xi80fahBiwe3yS1r8kqyzjUM5XEWr","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17533313179947212986","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-03-03T10:17:53.8998233Z","duration":"PT1M55.7658303S","correlationId":"09e8336d-c28b-4ef7-b57f-f5a3d34d6e60","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus"]},{"resourceType":"networkSecurityGroups","locations":["eastus"]},{"resourceType":"publicIPAddresses","locations":["eastus"]},{"resourceType":"networkInterfaces","locations":["eastus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vnet1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000002NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm000002NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000002PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm000002PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000002VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000002VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm000002VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000002","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm000002"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000002"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000002VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000002NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000002PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1"}]}}'
headers:
cache-control:
- no-cache
content-length:
- - '3133'
+ - '3205'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:31 GMT
+ - Mon, 03 Mar 2025 10:18:05 GMT
expires:
- '-1'
pragma:
@@ -3696,7 +3909,7 @@ interactions:
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: F47FB703CA004BFBB33DEDF10F58EC3C Ref B: TYO201100115009 Ref C: 2024-08-26T09:59:30Z'
+ - 'Ref A: 28C6A77791164434BE5DC1ED0751F68D Ref B: SEL221051504037 Ref C: 2025-03-03T10:18:05Z'
status:
code: 200
message: OK
@@ -3715,29 +3928,29 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2024-07-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000002?$expand=instanceView&api-version=2024-07-01
response:
body:
- string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\
+ string: "{\r\n \"name\": \"vm000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000002\"\
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"04e77ebd-a72b-496e-bfaa-665c5f367fc3\"\
+ : \"Succeeded\",\r\n \"vmId\": \"cac8b997-8eed-4258-811e-2e5d8806ec7e\"\
,\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"\
publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\"\
,\r\n \"sku\": \"2022-datacenter-g2\",\r\n \"version\": \"latest\"\
- ,\r\n \"exactVersion\": \"20348.2655.240810\"\r\n },\r\n \
+ ,\r\n \"exactVersion\": \"20348.3207.250210\"\r\n },\r\n \
\ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"\
- vm1_OsDisk_1_89e5ab6a0ca7469e96a831f5b85d19fb\",\r\n \"createOption\"\
+ vm000002_OsDisk_1_6490e4c2f668414eb1a2c482c49d37ae\",\r\n \"createOption\"\
: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\"\
: {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_89e5ab6a0ca7469e96a831f5b85d19fb\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm000002_OsDisk_1_6490e4c2f668414eb1a2c482c49d37ae\"\
\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\
: 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\"\
: \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"\
- vm1\",\r\n \"adminUsername\": \"clitest1234\",\r\n \"windowsConfiguration\"\
+ vm000002\",\r\n \"adminUsername\": \"clitest1234\",\r\n \"windowsConfiguration\"\
: {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\"\
: true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\
,\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \
@@ -3746,36 +3959,36 @@ interactions:
: true\r\n },\r\n \"securityProfile\": {\r\n \"uefiSettings\":\
\ {\r\n \"secureBootEnabled\": true,\r\n \"vTpmEnabled\": true\r\
\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n },\r\n \"\
- networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
+ networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000002VMNic\"\
}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"instanceView\":\
\ {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n\
\ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\"\
,\r\n \"level\": \"Warning\",\r\n \"displayStatus\"\
: \"Not Ready\",\r\n \"message\": \"VM status blob is found but\
- \ not yet populated.\",\r\n \"time\": \"2024-08-26T09:59:32+00:00\"\
+ \ not yet populated.\",\r\n \"time\": \"2025-03-03T10:18:07+00:00\"\
\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n \
- \ {\r\n \"name\": \"vm1_OsDisk_1_89e5ab6a0ca7469e96a831f5b85d19fb\"\
+ \ {\r\n \"name\": \"vm000002_OsDisk_1_6490e4c2f668414eb1a2c482c49d37ae\"\
,\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:58:13.4811577+00:00\"\r\n }\r\
+ \ \"time\": \"2025-03-03T10:16:48.5163245+00:00\"\r\n }\r\
\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V2\"\
,\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\
,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\
- \ succeeded\",\r\n \"time\": \"2024-08-26T09:59:19.4034391+00:00\"\
+ \ succeeded\",\r\n \"time\": \"2025-03-03T10:17:49.4372573+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:58:08.7623699+00:00\"\
+ \r\n }\r\n ]\r\n },\r\n \"timeCreated\": \"2025-03-03T10:16:44.4851414+00:00\"\
\r\n },\r\n \"etag\": \"\\\"2\\\"\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '3474'
+ - '3509'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:31 GMT
+ - Mon, 03 Mar 2025 10:18:06 GMT
expires:
- '-1'
pragma:
@@ -3786,12 +3999,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;23978,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: FF08EB6F8D0747A394565D4DE980AB48 Ref B: TYO201151004034 Ref C: 2024-08-26T09:59:31Z'
+ - 'Ref A: 5BC6B0CF96A24502862E5D836C8C7563 Ref B: SEL221051804029 Ref C: 2025-03-03T10:18:06Z'
status:
code: 200
message: ''
@@ -3810,23 +4025,23 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2022-01-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000002VMNic?api-version=2022-01-01
response:
body:
- string: '{"name":"vm1VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","etag":"W/\"89115a5e-f3e5-47be-9e57-01bf6a3bda43\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"356780b5-5234-447f-99e6-26bcdbebc9c9","ipConfigurations":[{"name":"ipconfigvm1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1","etag":"W/\"89115a5e-f3e5-47be-9e57-01bf6a3bda43\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"eypcspderyhejfurgwfz2kjtud.bx.internal.cloudapp.net"},"macAddress":"00-0D-3A-4D-51-FE","enableAcceleratedNetworking":false,"vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":true,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"eastus","kind":"Regular"}'
+ string: '{"name":"vm000002VMNic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000002VMNic","etag":"W/\"524d75b4-ed75-42a8-92b6-f2fcf0aafc1c\"","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"cd1826ba-b687-4622-ad64-148c3f848b80","ipConfigurations":[{"name":"ipconfigvm000002","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000002VMNic/ipConfigurations/ipconfigvm000002","etag":"W/\"524d75b4-ed75-42a8-92b6-f2fcf0aafc1c\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000002PublicIP"},"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"ux4i3ttefi1ujmxfexjkfq1b1f.bx.internal.cloudapp.net"},"macAddress":"7C-1E-52-1B-6D-B2","enableAcceleratedNetworking":false,"vnetEncryptionSupported":false,"enableIPForwarding":false,"networkSecurityGroup":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm000002NSG"},"primary":true,"virtualMachine":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000002"},"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard","allowPort25Out":true,"auxiliaryMode":"None"},"type":"Microsoft.Network/networkInterfaces","location":"eastus","kind":"Regular"}'
headers:
cache-control:
- no-cache
content-length:
- - '1963'
+ - '2003'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:32 GMT
+ - Mon, 03 Mar 2025 10:18:07 GMT
etag:
- - W/"89115a5e-f3e5-47be-9e57-01bf6a3bda43"
+ - W/"524d75b4-ed75-42a8-92b6-f2fcf0aafc1c"
expires:
- '-1'
pragma:
@@ -3838,11 +4053,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - cea5bd61-02cf-40f5-851c-dc9bbba7c710
+ - 68425042-93bf-4a76-9e64-0c1b93669c9f
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3748'
+ - '3749'
x-msedge-ref:
- - 'Ref A: 1912EFDC42C145EDACAB75BF4046639E Ref B: TYO201100113011 Ref C: 2024-08-26T09:59:32Z'
+ - 'Ref A: DED447D718FE44CCA143E8FED2D89F25 Ref B: SEL221051802037 Ref C: 2025-03-03T10:18:07Z'
status:
code: 200
message: OK
@@ -3861,23 +4076,23 @@ interactions:
- -l -g -n --image --admin-username --admin-password --license-type --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.70.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/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2022-01-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000002PublicIP?api-version=2022-01-01
response:
body:
- string: '{"name":"vm1PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","etag":"W/\"954bf91e-58da-43c7-bb10-3c11413f99de\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"1dc66af7-0db6-4b71-a2e5-f0c9fdd2d771","ipAddress":"40.87.62.65","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}'
+ string: '{"name":"vm000002PublicIP","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm000002PublicIP","etag":"W/\"a378a2bb-af5a-4475-8532-00475483cef1\"","location":"eastus","tags":{},"properties":{"provisioningState":"Succeeded","resourceGuid":"d4d23c42-f1f4-4d92-86d8-35bf62f07fad","ipAddress":"13.68.235.253","publicIPAddressVersion":"IPv4","publicIPAllocationMethod":"Static","idleTimeoutInMinutes":4,"ipTags":[],"ipConfiguration":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000002VMNic/ipConfigurations/ipconfigvm000002"}},"type":"Microsoft.Network/publicIPAddresses","sku":{"name":"Standard","tier":"Regional"}}'
headers:
cache-control:
- no-cache
content-length:
- - '769'
+ - '791'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:32 GMT
+ - Mon, 03 Mar 2025 10:18:08 GMT
etag:
- - W/"954bf91e-58da-43c7-bb10-3c11413f99de"
+ - W/"a378a2bb-af5a-4475-8532-00475483cef1"
expires:
- '-1'
pragma:
@@ -3889,11 +4104,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - a7316204-0569-42c5-8db8-8454361e0d52
+ - 83257336-9732-4534-8ae1-e14338317c91
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 2729C51CDF564755B15B8126D4DC6DE3 Ref B: TYO201100113049 Ref C: 2024-08-26T09:59:33Z'
+ - 'Ref A: D93FCC87DEF74C82B41BFF2470200D4E Ref B: SEL221051805009 Ref C: 2025-03-03T10:18:08Z'
status:
code: 200
message: OK
@@ -3911,23 +4126,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.70.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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-01-01
response:
body:
- string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"077855e2-0073-4a89-b1ef-cd538a7951b8\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGSXJ35OJONQJNWOH432FR55BLBZUEY4PIOX7QSN6YEB3UWXD5U6CQAGUBDFBLTCRZX/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}'
+ string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"0f9c16cb-05b2-413b-be4a-5820ce8d6da2\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGCPEWMVKHVQ6BBMJJKHY3EFQ7J67SKZLJAPGKE4QCCSQYGZONXRXUPX7M2FMCWASH7/providers/Microsoft.Network/networkInterfaces/VMECKKDKLBVMNIC/ipConfigurations/IPCONFIGVMECKKDKLB"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}'
headers:
cache-control:
- no-cache
content-length:
- - '750'
+ - '733'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:34 GMT
+ - Mon, 03 Mar 2025 10:18:10 GMT
etag:
- - W/"077855e2-0073-4a89-b1ef-cd538a7951b8"
+ - W/"0f9c16cb-05b2-413b-be4a-5820ce8d6da2"
expires:
- '-1'
pragma:
@@ -3939,11 +4154,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 62ae8541-b3cf-4e67-9e40-e7e58dcf4f82
+ - 51cf072e-7a04-4b3e-8b61-9c3b0d2402f0
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 28A54FD08AAA4172AFE7D5F6722BEA3C Ref B: TYO201151006034 Ref C: 2024-08-26T09:59:34Z'
+ - 'Ref A: 2E980191EAF84B5FB3D6162C13ED0719 Ref B: SEL221051803039 Ref C: 2025-03-03T10:18:10Z'
status:
code: 200
message: OK
@@ -3968,25 +4183,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.70.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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-01-01
response:
body:
- string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"c734d082-57f6-435d-9527-78794f670ec9\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}'
+ string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"32547419-b6f8-4c56-a3fb-8d4af723c073\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000002VMNic/ipConfigurations/ipconfigvm000002"}],"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/eastus/operations/e6be0685-afe4-4fe8-b5b2-06fc2de82e07?api-version=2024-01-01&t=638602631752078935&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=iRLZMds-6UkEPyFRhEK6kAbzppkuPX2dVoJp4J6sS14zDRMIGW9uXRQ9Q4D4ogV6Ee-AyKmi8bAQfkXlAi2i9U-TNg3az-91gdwQMwTsf--JppG7Ze8IOytJDgyP2aRVHaG9TvBio8HThQh_0A7I9bsbKENO2Ekb3V7_6jEMHLQri49Fv73LK3kxjXbjtXfAhSaxvi2cfyMVuxA6aqHa7_odjfug-2MQ2vC3UqmdTqO8p86lTfTMDCyYftFaPXIWwydX1dI0Sn8-0lyMnO28_PchYyh-er6-1TqQT_MFQBw9Yf4Dhg5u2N-ccoEH3i8Pj7OJeLb8QZuK18UeD81ojQ&h=pQEAcb2iCVJWQlUynOmadqnarmtdbup9C0wPvcE1z4o
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e1cfb7bd-8a9e-43db-a398-5d58e4f225a5?api-version=2024-01-01&t=638765938917417242&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=KtzUDL5TpbpSA9D3OceJSfhtJguIBmIe9E-2ybKs72ttuhjzdQ06uzrO_gJMRBXnX0eL2fjUchwxFpea6byS4SQc3UXTVJvYc1ECilo-J-h1Jq-1fl0imJVtuLhmX7KmT0WK57dldpXSqqSQiHQLdNrCofSZ2CD8jB8jxsgmqQ8x5l64jGemeSJ97C7EPyTkLoCw-0XV5TM4Pl6zBEVqHPh1eYbOrL-kRhRZSHX8K0jOtL_quRf-Pzg7NJotRPL-pRv6pBiDvauby9NJL4qQC82HQAkon19sSwGnDK_GcbaOrIjxtyFmrzFn-AGewodn_xP-K0dpzVHhhLDF01KSBw&h=xOfmqxakcK6dPC-KTBar0MbcnGikaNySr5STOwOsP4g
cache-control:
- no-cache
content-length:
- - '720'
+ - '699'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:35 GMT
+ - Mon, 03 Mar 2025 10:18:11 GMT
expires:
- '-1'
pragma:
@@ -3998,13 +4213,13 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 5d706d98-3e2e-4900-96c3-dd9a070ce527
+ - b5c490c4-16a7-466f-be1f-9c2b0bee7c2e
x-ms-ratelimit-remaining-subscription-global-writes:
- '2999'
x-ms-ratelimit-remaining-subscription-writes:
- '199'
x-msedge-ref:
- - 'Ref A: 897826B962EE43AE85114BA49F935938 Ref B: TYO201151006034 Ref C: 2024-08-26T09:59:34Z'
+ - 'Ref A: 76C8DBA805F342C89DF8837711BC85F6 Ref B: SEL221051803039 Ref C: 2025-03-03T10:18:10Z'
status:
code: 200
message: OK
@@ -4022,9 +4237,9 @@ 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.70.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/eastus/operations/e6be0685-afe4-4fe8-b5b2-06fc2de82e07?api-version=2024-01-01&t=638602631752078935&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=iRLZMds-6UkEPyFRhEK6kAbzppkuPX2dVoJp4J6sS14zDRMIGW9uXRQ9Q4D4ogV6Ee-AyKmi8bAQfkXlAi2i9U-TNg3az-91gdwQMwTsf--JppG7Ze8IOytJDgyP2aRVHaG9TvBio8HThQh_0A7I9bsbKENO2Ekb3V7_6jEMHLQri49Fv73LK3kxjXbjtXfAhSaxvi2cfyMVuxA6aqHa7_odjfug-2MQ2vC3UqmdTqO8p86lTfTMDCyYftFaPXIWwydX1dI0Sn8-0lyMnO28_PchYyh-er6-1TqQT_MFQBw9Yf4Dhg5u2N-ccoEH3i8Pj7OJeLb8QZuK18UeD81ojQ&h=pQEAcb2iCVJWQlUynOmadqnarmtdbup9C0wPvcE1z4o
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e1cfb7bd-8a9e-43db-a398-5d58e4f225a5?api-version=2024-01-01&t=638765938917417242&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=KtzUDL5TpbpSA9D3OceJSfhtJguIBmIe9E-2ybKs72ttuhjzdQ06uzrO_gJMRBXnX0eL2fjUchwxFpea6byS4SQc3UXTVJvYc1ECilo-J-h1Jq-1fl0imJVtuLhmX7KmT0WK57dldpXSqqSQiHQLdNrCofSZ2CD8jB8jxsgmqQ8x5l64jGemeSJ97C7EPyTkLoCw-0XV5TM4Pl6zBEVqHPh1eYbOrL-kRhRZSHX8K0jOtL_quRf-Pzg7NJotRPL-pRv6pBiDvauby9NJL4qQC82HQAkon19sSwGnDK_GcbaOrIjxtyFmrzFn-AGewodn_xP-K0dpzVHhhLDF01KSBw&h=xOfmqxakcK6dPC-KTBar0MbcnGikaNySr5STOwOsP4g
response:
body:
string: '{"status":"Succeeded"}'
@@ -4036,7 +4251,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:35 GMT
+ - Mon, 03 Mar 2025 10:18:11 GMT
expires:
- '-1'
pragma:
@@ -4048,11 +4263,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 1151135d-f250-49a3-9b19-f1dee39000de
+ - 5f72fe75-1ed9-420e-b184-171af38488c1
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3749'
+ - '3748'
x-msedge-ref:
- - 'Ref A: FEDF593828E44C94BD348B0F785F7D8C Ref B: TYO201151006034 Ref C: 2024-08-26T09:59:35Z'
+ - 'Ref A: 865E4DC553234B7E81659FCD4375DA1D Ref B: SEL221051803039 Ref C: 2025-03-03T10:18:11Z'
status:
code: 200
message: OK
@@ -4070,23 +4285,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.70.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/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2024-01-01
response:
body:
- string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"e7b2a1b6-0166-4046-8b47-af3eeb1387a7\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGSXJ35OJONQJNWOH432FR55BLBZUEY4PIOX7QSN6YEB3UWXD5U6CQAGUBDFBLTCRZX/providers/Microsoft.Network/networkInterfaces/VM1VMNIC/ipConfigurations/IPCONFIGVM1"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}'
+ string: '{"name":"subnet1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1","etag":"W/\"704f5bc3-fd18-4350-b946-62b2aceb07f5\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipConfigurations":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGCPEWMVKHVQ6BBMJJKHY3EFQ7J67SKZLJAPGKE4QCCSQYGZONXRXUPX7M2FMCWASH7/providers/Microsoft.Network/networkInterfaces/VMECKKDKLBVMNIC/ipConfigurations/IPCONFIGVMECKKDKLB"}],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled","defaultOutboundAccess":false},"type":"Microsoft.Network/virtualNetworks/subnets"}'
headers:
cache-control:
- no-cache
content-length:
- - '780'
+ - '763'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:35 GMT
+ - Mon, 03 Mar 2025 10:18:12 GMT
etag:
- - W/"e7b2a1b6-0166-4046-8b47-af3eeb1387a7"
+ - W/"704f5bc3-fd18-4350-b946-62b2aceb07f5"
expires:
- '-1'
pragma:
@@ -4098,11 +4313,11 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 63138a0e-24d1-4776-82da-219c1b6f27e9
+ - 86457112-1252-4440-9d90-bebb01512cc1
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3748'
+ - '3749'
x-msedge-ref:
- - 'Ref A: E8A713E8317543A4B56F69CC10F59490 Ref B: TYO201151006034 Ref C: 2024-08-26T09:59:35Z'
+ - 'Ref A: E4BD92E49AA44F689EBAC28F477731A3 Ref B: SEL221051803039 Ref C: 2025-03-03T10:18:12Z'
status:
code: 200
message: OK
@@ -4120,29 +4335,75 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --order-applications
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-07-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2022-09-01
response:
body:
- string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_vm_add_application_with_order_application","date":"2025-03-03T10:15:32Z","module":"vm","Creator":"zhuyan@microsoft.com","DateCreated":"2025-03-03T10:15:38Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '450'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 03 Mar 2025 10:18:13 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: 32CCAA3CDB584B28B9E1B7D5616E5611 Ref B: SEL221051503037 Ref C: 2025-03-03T10:18:13Z'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm application set
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --app-version-ids --order-applications
+ User-Agent:
+ - AZURECLI/2.70.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/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000002?api-version=2024-07-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vm000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000002\"\
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"04e77ebd-a72b-496e-bfaa-665c5f367fc3\"\
+ : \"Succeeded\",\r\n \"vmId\": \"cac8b997-8eed-4258-811e-2e5d8806ec7e\"\
,\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"\
publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\"\
,\r\n \"sku\": \"2022-datacenter-g2\",\r\n \"version\": \"latest\"\
- ,\r\n \"exactVersion\": \"20348.2655.240810\"\r\n },\r\n \
+ ,\r\n \"exactVersion\": \"20348.3207.250210\"\r\n },\r\n \
\ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"\
- vm1_OsDisk_1_89e5ab6a0ca7469e96a831f5b85d19fb\",\r\n \"createOption\"\
+ vm000002_OsDisk_1_6490e4c2f668414eb1a2c482c49d37ae\",\r\n \"createOption\"\
: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\"\
: {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_89e5ab6a0ca7469e96a831f5b85d19fb\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm000002_OsDisk_1_6490e4c2f668414eb1a2c482c49d37ae\"\
\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\
: 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\"\
: \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"\
- vm1\",\r\n \"adminUsername\": \"clitest1234\",\r\n \"windowsConfiguration\"\
+ vm000002\",\r\n \"adminUsername\": \"clitest1234\",\r\n \"windowsConfiguration\"\
: {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\"\
: true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\
,\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \
@@ -4151,19 +4412,19 @@ interactions:
: true\r\n },\r\n \"securityProfile\": {\r\n \"uefiSettings\":\
\ {\r\n \"secureBootEnabled\": true,\r\n \"vTpmEnabled\": true\r\
\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n },\r\n \"\
- networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
+ networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000002VMNic\"\
}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"timeCreated\": \"\
- 2024-08-26T09:58:08.7623699+00:00\"\r\n },\r\n \"etag\": \"\\\"2\\\"\"\r\
+ 2025-03-03T10:16:44.4851414+00:00\"\r\n },\r\n \"etag\": \"\\\"2\\\"\"\r\
\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2268'
+ - '2298'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:36 GMT
+ - Mon, 03 Mar 2025 10:18:13 GMT
etag:
- '"2"'
expires:
@@ -4176,32 +4437,35 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGetSubscriptionMaximum;23976,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: 934D13967D654D3C92108FCE0E905ECF Ref B: TYO201151003042 Ref C: 2024-08-26T09:59:36Z'
+ - 'Ref A: FECAEF0FB0AC4C43BF71C1AFC6AB70CF Ref B: SEL221051804033 Ref C: 2025-03-03T10:18:13Z'
status:
code: 200
message: ''
- request:
- body: '{"location": "eastus", "tags": {}, "properties": {"hardwareProfile": {"vmSize":
- "Standard_DS1_v2"}, "storageProfile": {"imageReference": {"publisher": "MicrosoftWindowsServer",
- "offer": "WindowsServer", "sku": "2022-datacenter-g2", "version": "latest"},
- "osDisk": {"osType": "Windows", "name": "vm1_OsDisk_1_89e5ab6a0ca7469e96a831f5b85d19fb",
- "caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 127, "managedDisk":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_89e5ab6a0ca7469e96a831f5b85d19fb",
- "storageAccountType": "Premium_LRS"}, "deleteOption": "Detach"}, "dataDisks":
- [], "diskControllerType": "SCSI"}, "osProfile": {"computerName": "vm1", "adminUsername":
- "clitest1234", "windowsConfiguration": {"provisionVMAgent": true, "enableAutomaticUpdates":
- true, "patchSettings": {"patchMode": "AutomaticByOS", "assessmentMode": "ImageDefault"}},
- "secrets": [], "allowExtensionOperations": true, "requireGuestProvisionSignal":
- true}, "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"}]},
- "securityProfile": {"uefiSettings": {"secureBootEnabled": true, "vTpmEnabled":
- true}, "securityType": "TrustedLaunch"}, "licenseType": "Windows_Server", "applicationProfile":
- {"galleryApplications": [{"order": 1, "packageReferenceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MyFirstApp/versions/1.0.0"},
- {"order": 2, "packageReferenceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MySecondApp/versions/1.0.1"}]}}}'
+ body: '{"location": "eastus", "properties": {"applicationProfile": {"galleryApplications":
+ [{"order": 1, "packageReferenceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MyFirstApp/versions/1.0.0"},
+ {"order": 2, "packageReferenceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MySecondApp/versions/1.0.1"}]},
+ "hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "licenseType": "Windows_Server",
+ "networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000002VMNic"}]},
+ "osProfile": {"adminUsername": "clitest1234", "allowExtensionOperations": true,
+ "computerName": "vm000002", "requireGuestProvisionSignal": true, "secrets":
+ [], "windowsConfiguration": {"enableAutomaticUpdates": true, "patchSettings":
+ {"assessmentMode": "ImageDefault", "patchMode": "AutomaticByOS"}, "provisionVMAgent":
+ true}}, "securityProfile": {"securityType": "TrustedLaunch", "uefiSettings":
+ {"secureBootEnabled": true, "vTpmEnabled": true}}, "storageProfile": {"dataDisks":
+ [], "diskControllerType": "SCSI", "imageReference": {"offer": "WindowsServer",
+ "publisher": "MicrosoftWindowsServer", "sku": "2022-datacenter-g2", "version":
+ "latest"}, "osDisk": {"caching": "ReadWrite", "createOption": "FromImage", "deleteOption":
+ "Detach", "diskSizeGB": 127, "managedDisk": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm000002_OsDisk_1_6490e4c2f668414eb1a2c482c49d37ae",
+ "storageAccountType": "Premium_LRS"}, "name": "vm000002_OsDisk_1_6490e4c2f668414eb1a2c482c49d37ae",
+ "osType": "Windows"}}}, "tags": {}}'
headers:
Accept:
- application/json
@@ -4212,22 +4476,22 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1858'
+ - '1878'
Content-Type:
- application/json
ParameterSetName:
- -g -n --app-version-ids --order-applications
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-07-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000002?api-version=2024-07-01
response:
body:
- string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\
+ string: "{\r\n \"name\": \"vm000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000002\"\
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Updating\",\r\n \"vmId\": \"04e77ebd-a72b-496e-bfaa-665c5f367fc3\"\
+ : \"Updating\",\r\n \"vmId\": \"cac8b997-8eed-4258-811e-2e5d8806ec7e\"\
,\r\n \"applicationProfile\": {\r\n \"galleryApplications\": [\r\n\
\ {\r\n \"order\": 1,\r\n \"manuallyManaged\": false,\r\
\n \"packageReferenceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MyFirstApp/versions/1.0.0\"\
@@ -4240,16 +4504,16 @@ interactions:
storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\"\
: \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n\
\ \"sku\": \"2022-datacenter-g2\",\r\n \"version\": \"latest\"\
- ,\r\n \"exactVersion\": \"20348.2655.240810\"\r\n },\r\n \
+ ,\r\n \"exactVersion\": \"20348.3207.250210\"\r\n },\r\n \
\ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"\
- vm1_OsDisk_1_89e5ab6a0ca7469e96a831f5b85d19fb\",\r\n \"createOption\"\
+ vm000002_OsDisk_1_6490e4c2f668414eb1a2c482c49d37ae\",\r\n \"createOption\"\
: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\"\
: {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_89e5ab6a0ca7469e96a831f5b85d19fb\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm000002_OsDisk_1_6490e4c2f668414eb1a2c482c49d37ae\"\
\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\
: 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\"\
: \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"\
- vm1\",\r\n \"adminUsername\": \"clitest1234\",\r\n \"windowsConfiguration\"\
+ vm000002\",\r\n \"adminUsername\": \"clitest1234\",\r\n \"windowsConfiguration\"\
: {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\"\
: true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\
,\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \
@@ -4258,11 +4522,11 @@ interactions:
: true\r\n },\r\n \"securityProfile\": {\r\n \"uefiSettings\":\
\ {\r\n \"secureBootEnabled\": true,\r\n \"vTpmEnabled\": true\r\
\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n },\r\n \"\
- networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
+ networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000002VMNic\"\
}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"timeCreated\": \"\
- 2024-08-26T09:58:08.7623699+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\",\r\
+ 2025-03-03T10:16:44.4851414+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\",\r\
\n \"resources\": [\r\n {\r\n \"name\": \"VMAppExtension\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/extensions/VMAppExtension\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000002/extensions/VMAppExtension\"\
,\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n\
\ \"location\": \"eastus\",\r\n \"properties\": {\r\n \"\
autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Creating\"\
@@ -4273,15 +4537,15 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e3ed66c9-b9a7-4f13-908f-e5f49034c622?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631793690073&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=g89NIeQz4GjfKylntkON0r_iyvPG7iCVgUXHWc10BMiRaeMcAa-6kQqSAwDgJX_y956yD4znK1Dz7KZJWfHodPH4IMMjsdYFhtWOIVAUQnFosBV5t3y_sE_EDbdW3snHXb8xdXR8iLvK2McpeiUgTQmvrbBL3i-lUV2xHeKL-7tIWzrdaGT7oW6mLvBpSWtg-J0F23NU64qn9u7Q1OxfNgSz_5zKVyYNXKV2AgncRP_-HzyAFBpm6MvDwvzCub1g6qqFFgeyR0UpZuGrXuGaY0G-rt57zlsKXfZ2ZbQA0SGm5BwzdQmddlHPHvPveBprBtg8Fx6uOk8BS1reZoBVmg&h=5LqQLh1kzvbzhC2Bk7HY2f2qRPjdEDkUNy1wf25_Kyk
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a890cf43-56d5-4875-a884-ed6e35a8883b?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638765938969071820&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=Pt44eh8cRSZIs2gZN2cqkee3Io34yug450ZmPmUpy7FIKRrRKsaSbHAH2bktMKau_EiV7iO67EUpNV4f6xFO41tbGOxps4w80_QDomApIUClyoxSBMFhxscWd3kptwMx10vG9jFD04rzEde2HxZp9MUHTxP3gxzO5XAKQyrWSzWwxFwN5SkXmeyXxgULlHwAYOSIJRZmw9XGChi1TvH8cipD7SbxV2LD_9N1f7dKdhsxd3oB_jDAuH7_WvGFQIacd2bDP2lZSKAPtqo1O-DTP4M33FL7aDOcAMfv2Mp_obth70Rd1KGd-0rjHBFcfhxbAyZfNIXIaAzF5iYN2QAVeA&h=Md7SEvTHQxzDABEfDK16id_EQ8Jxmdg70J6Iloy8OKI
cache-control:
- no-cache
content-length:
- - '3728'
+ - '3763'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:38 GMT
+ - Mon, 03 Mar 2025 10:18:16 GMT
etag:
- '"3"'
expires:
@@ -4294,14 +4558,68 @@ interactions:
- CONFIG_NOCACHE
x-content-type-options:
- nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/PutVMSubscriptionMaximum;1496,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: C6768D612AC84E6AA6D684F93502A8C4 Ref B: TYO201151003042 Ref C: 2024-08-26T09:59:37Z'
+ - 'Ref A: 14254B7C1A2D4D46974F40F4A6DB3BB0 Ref B: SEL221051804033 Ref C: 2025-03-03T10:18:14Z'
+ status:
+ code: 200
+ message: ''
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm application set
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --app-version-ids --order-applications
+ User-Agent:
+ - AZURECLI/2.70.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/eastus/operations/a890cf43-56d5-4875-a884-ed6e35a8883b?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638765938969071820&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=Pt44eh8cRSZIs2gZN2cqkee3Io34yug450ZmPmUpy7FIKRrRKsaSbHAH2bktMKau_EiV7iO67EUpNV4f6xFO41tbGOxps4w80_QDomApIUClyoxSBMFhxscWd3kptwMx10vG9jFD04rzEde2HxZp9MUHTxP3gxzO5XAKQyrWSzWwxFwN5SkXmeyXxgULlHwAYOSIJRZmw9XGChi1TvH8cipD7SbxV2LD_9N1f7dKdhsxd3oB_jDAuH7_WvGFQIacd2bDP2lZSKAPtqo1O-DTP4M33FL7aDOcAMfv2Mp_obth70Rd1KGd-0rjHBFcfhxbAyZfNIXIaAzF5iYN2QAVeA&h=Md7SEvTHQxzDABEfDK16id_EQ8Jxmdg70J6Iloy8OKI
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2025-03-03T10:18:16.4368367+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"a890cf43-56d5-4875-a884-ed6e35a8883b\"\
+ \r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 03 Mar 2025 10:18:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-cache:
+ - CONFIG_NOCACHE
+ x-content-type-options:
+ - nosniff
+ x-ms-need-to-refresh-epl-cache:
+ - 'False'
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14997
+ x-ms-ratelimit-remaining-subscription-global-reads:
+ - '3748'
+ x-msedge-ref:
+ - 'Ref A: 4C4F3A54441147D58F4A8C4482B83350 Ref B: SEL221051804033 Ref C: 2025-03-03T10:18:16Z'
status:
code: 200
message: ''
@@ -4319,13 +4637,13 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --order-applications
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/eastus/operations/e3ed66c9-b9a7-4f13-908f-e5f49034c622?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631793690073&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=g89NIeQz4GjfKylntkON0r_iyvPG7iCVgUXHWc10BMiRaeMcAa-6kQqSAwDgJX_y956yD4znK1Dz7KZJWfHodPH4IMMjsdYFhtWOIVAUQnFosBV5t3y_sE_EDbdW3snHXb8xdXR8iLvK2McpeiUgTQmvrbBL3i-lUV2xHeKL-7tIWzrdaGT7oW6mLvBpSWtg-J0F23NU64qn9u7Q1OxfNgSz_5zKVyYNXKV2AgncRP_-HzyAFBpm6MvDwvzCub1g6qqFFgeyR0UpZuGrXuGaY0G-rt57zlsKXfZ2ZbQA0SGm5BwzdQmddlHPHvPveBprBtg8Fx6uOk8BS1reZoBVmg&h=5LqQLh1kzvbzhC2Bk7HY2f2qRPjdEDkUNy1wf25_Kyk
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a890cf43-56d5-4875-a884-ed6e35a8883b?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638765938969071820&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=Pt44eh8cRSZIs2gZN2cqkee3Io34yug450ZmPmUpy7FIKRrRKsaSbHAH2bktMKau_EiV7iO67EUpNV4f6xFO41tbGOxps4w80_QDomApIUClyoxSBMFhxscWd3kptwMx10vG9jFD04rzEde2HxZp9MUHTxP3gxzO5XAKQyrWSzWwxFwN5SkXmeyXxgULlHwAYOSIJRZmw9XGChi1TvH8cipD7SbxV2LD_9N1f7dKdhsxd3oB_jDAuH7_WvGFQIacd2bDP2lZSKAPtqo1O-DTP4M33FL7aDOcAMfv2Mp_obth70Rd1KGd-0rjHBFcfhxbAyZfNIXIaAzF5iYN2QAVeA&h=Md7SEvTHQxzDABEfDK16id_EQ8Jxmdg70J6Iloy8OKI
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:59:38.6691849+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"e3ed66c9-b9a7-4f13-908f-e5f49034c622\"\
+ string: "{\r\n \"startTime\": \"2025-03-03T10:18:16.4368367+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"a890cf43-56d5-4875-a884-ed6e35a8883b\"\
\r\n}"
headers:
cache-control:
@@ -4335,7 +4653,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 09:59:39 GMT
+ - Mon, 03 Mar 2025 10:18:47 GMT
expires:
- '-1'
pragma:
@@ -4346,12 +4664,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;14981
+ - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14996
x-ms-ratelimit-remaining-subscription-global-reads:
- - '3747'
+ - '3749'
x-msedge-ref:
- - 'Ref A: DE3721AA649546BF91AA3E51EB34856A Ref B: TYO201151003042 Ref C: 2024-08-26T09:59:39Z'
+ - 'Ref A: 96F52F9A501B4C3D9D49B67BE0AE4C23 Ref B: SEL221051804033 Ref C: 2025-03-03T10:18:47Z'
status:
code: 200
message: ''
@@ -4369,13 +4689,13 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --order-applications
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/eastus/operations/e3ed66c9-b9a7-4f13-908f-e5f49034c622?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631793690073&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=g89NIeQz4GjfKylntkON0r_iyvPG7iCVgUXHWc10BMiRaeMcAa-6kQqSAwDgJX_y956yD4znK1Dz7KZJWfHodPH4IMMjsdYFhtWOIVAUQnFosBV5t3y_sE_EDbdW3snHXb8xdXR8iLvK2McpeiUgTQmvrbBL3i-lUV2xHeKL-7tIWzrdaGT7oW6mLvBpSWtg-J0F23NU64qn9u7Q1OxfNgSz_5zKVyYNXKV2AgncRP_-HzyAFBpm6MvDwvzCub1g6qqFFgeyR0UpZuGrXuGaY0G-rt57zlsKXfZ2ZbQA0SGm5BwzdQmddlHPHvPveBprBtg8Fx6uOk8BS1reZoBVmg&h=5LqQLh1kzvbzhC2Bk7HY2f2qRPjdEDkUNy1wf25_Kyk
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a890cf43-56d5-4875-a884-ed6e35a8883b?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638765938969071820&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=Pt44eh8cRSZIs2gZN2cqkee3Io34yug450ZmPmUpy7FIKRrRKsaSbHAH2bktMKau_EiV7iO67EUpNV4f6xFO41tbGOxps4w80_QDomApIUClyoxSBMFhxscWd3kptwMx10vG9jFD04rzEde2HxZp9MUHTxP3gxzO5XAKQyrWSzWwxFwN5SkXmeyXxgULlHwAYOSIJRZmw9XGChi1TvH8cipD7SbxV2LD_9N1f7dKdhsxd3oB_jDAuH7_WvGFQIacd2bDP2lZSKAPtqo1O-DTP4M33FL7aDOcAMfv2Mp_obth70Rd1KGd-0rjHBFcfhxbAyZfNIXIaAzF5iYN2QAVeA&h=Md7SEvTHQxzDABEfDK16id_EQ8Jxmdg70J6Iloy8OKI
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:59:38.6691849+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"e3ed66c9-b9a7-4f13-908f-e5f49034c622\"\
+ string: "{\r\n \"startTime\": \"2025-03-03T10:18:16.4368367+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"a890cf43-56d5-4875-a884-ed6e35a8883b\"\
\r\n}"
headers:
cache-control:
@@ -4385,7 +4705,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:00:09 GMT
+ - Mon, 03 Mar 2025 10:19:17 GMT
expires:
- '-1'
pragma:
@@ -4396,12 +4716,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;14958
+ - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14999
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 9BBEE0C4E0754785BC143E15D66B194F Ref B: TYO201151003042 Ref C: 2024-08-26T10:00:09Z'
+ - 'Ref A: 807BDF29A7D843FBB338FAE7ED25DC8D Ref B: SEL221051804033 Ref C: 2025-03-03T10:19:17Z'
status:
code: 200
message: ''
@@ -4419,13 +4741,13 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --order-applications
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/eastus/operations/e3ed66c9-b9a7-4f13-908f-e5f49034c622?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631793690073&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=g89NIeQz4GjfKylntkON0r_iyvPG7iCVgUXHWc10BMiRaeMcAa-6kQqSAwDgJX_y956yD4znK1Dz7KZJWfHodPH4IMMjsdYFhtWOIVAUQnFosBV5t3y_sE_EDbdW3snHXb8xdXR8iLvK2McpeiUgTQmvrbBL3i-lUV2xHeKL-7tIWzrdaGT7oW6mLvBpSWtg-J0F23NU64qn9u7Q1OxfNgSz_5zKVyYNXKV2AgncRP_-HzyAFBpm6MvDwvzCub1g6qqFFgeyR0UpZuGrXuGaY0G-rt57zlsKXfZ2ZbQA0SGm5BwzdQmddlHPHvPveBprBtg8Fx6uOk8BS1reZoBVmg&h=5LqQLh1kzvbzhC2Bk7HY2f2qRPjdEDkUNy1wf25_Kyk
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a890cf43-56d5-4875-a884-ed6e35a8883b?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638765938969071820&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=Pt44eh8cRSZIs2gZN2cqkee3Io34yug450ZmPmUpy7FIKRrRKsaSbHAH2bktMKau_EiV7iO67EUpNV4f6xFO41tbGOxps4w80_QDomApIUClyoxSBMFhxscWd3kptwMx10vG9jFD04rzEde2HxZp9MUHTxP3gxzO5XAKQyrWSzWwxFwN5SkXmeyXxgULlHwAYOSIJRZmw9XGChi1TvH8cipD7SbxV2LD_9N1f7dKdhsxd3oB_jDAuH7_WvGFQIacd2bDP2lZSKAPtqo1O-DTP4M33FL7aDOcAMfv2Mp_obth70Rd1KGd-0rjHBFcfhxbAyZfNIXIaAzF5iYN2QAVeA&h=Md7SEvTHQxzDABEfDK16id_EQ8Jxmdg70J6Iloy8OKI
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:59:38.6691849+00:00\",\r\n \"\
- status\": \"InProgress\",\r\n \"name\": \"e3ed66c9-b9a7-4f13-908f-e5f49034c622\"\
+ string: "{\r\n \"startTime\": \"2025-03-03T10:18:16.4368367+00:00\",\r\n \"\
+ status\": \"InProgress\",\r\n \"name\": \"a890cf43-56d5-4875-a884-ed6e35a8883b\"\
\r\n}"
headers:
cache-control:
@@ -4435,7 +4757,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:00:39 GMT
+ - Mon, 03 Mar 2025 10:19:47 GMT
expires:
- '-1'
pragma:
@@ -4446,12 +4768,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;14970
+ - Microsoft.Compute/GetOperationResource;43,Microsoft.Compute/GetOperationSubscriptionMaximum;14998
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 0682D5DBEB084865A77B226DF8B30774 Ref B: TYO201151003042 Ref C: 2024-08-26T10:00:40Z'
+ - 'Ref A: C982C5FF09644246B211B71C64CEE0C9 Ref B: SEL221051804033 Ref C: 2025-03-03T10:19:48Z'
status:
code: 200
message: ''
@@ -4469,14 +4793,14 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --order-applications
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/eastus/operations/e3ed66c9-b9a7-4f13-908f-e5f49034c622?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638602631793690073&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=g89NIeQz4GjfKylntkON0r_iyvPG7iCVgUXHWc10BMiRaeMcAa-6kQqSAwDgJX_y956yD4znK1Dz7KZJWfHodPH4IMMjsdYFhtWOIVAUQnFosBV5t3y_sE_EDbdW3snHXb8xdXR8iLvK2McpeiUgTQmvrbBL3i-lUV2xHeKL-7tIWzrdaGT7oW6mLvBpSWtg-J0F23NU64qn9u7Q1OxfNgSz_5zKVyYNXKV2AgncRP_-HzyAFBpm6MvDwvzCub1g6qqFFgeyR0UpZuGrXuGaY0G-rt57zlsKXfZ2ZbQA0SGm5BwzdQmddlHPHvPveBprBtg8Fx6uOk8BS1reZoBVmg&h=5LqQLh1kzvbzhC2Bk7HY2f2qRPjdEDkUNy1wf25_Kyk
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a890cf43-56d5-4875-a884-ed6e35a8883b?p=54253b73-cb53-496f-ab42-5e5ee19426f8&api-version=2024-07-01&t=638765938969071820&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=Pt44eh8cRSZIs2gZN2cqkee3Io34yug450ZmPmUpy7FIKRrRKsaSbHAH2bktMKau_EiV7iO67EUpNV4f6xFO41tbGOxps4w80_QDomApIUClyoxSBMFhxscWd3kptwMx10vG9jFD04rzEde2HxZp9MUHTxP3gxzO5XAKQyrWSzWwxFwN5SkXmeyXxgULlHwAYOSIJRZmw9XGChi1TvH8cipD7SbxV2LD_9N1f7dKdhsxd3oB_jDAuH7_WvGFQIacd2bDP2lZSKAPtqo1O-DTP4M33FL7aDOcAMfv2Mp_obth70Rd1KGd-0rjHBFcfhxbAyZfNIXIaAzF5iYN2QAVeA&h=Md7SEvTHQxzDABEfDK16id_EQ8Jxmdg70J6Iloy8OKI
response:
body:
- string: "{\r\n \"startTime\": \"2024-08-26T09:59:38.6691849+00:00\",\r\n \"\
- endTime\": \"2024-08-26T10:01:03.8571841+00:00\",\r\n \"status\": \"Succeeded\"\
- ,\r\n \"name\": \"e3ed66c9-b9a7-4f13-908f-e5f49034c622\"\r\n}"
+ string: "{\r\n \"startTime\": \"2025-03-03T10:18:16.4368367+00:00\",\r\n \"\
+ endTime\": \"2025-03-03T10:20:02.3726906+00:00\",\r\n \"status\": \"Succeeded\"\
+ ,\r\n \"name\": \"a890cf43-56d5-4875-a884-ed6e35a8883b\"\r\n}"
headers:
cache-control:
- no-cache
@@ -4485,7 +4809,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:01:10 GMT
+ - Mon, 03 Mar 2025 10:20:18 GMT
expires:
- '-1'
pragma:
@@ -4496,12 +4820,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;14955
+ - Microsoft.Compute/GetOperationResource;44,Microsoft.Compute/GetOperationSubscriptionMaximum;14998
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: E55BDE19B3234E0A981B49E474798AC4 Ref B: TYO201151003042 Ref C: 2024-08-26T10:01:10Z'
+ - 'Ref A: EAE86E4960694FC3BFBFC72D50452491 Ref B: SEL221051804033 Ref C: 2025-03-03T10:20:18Z'
status:
code: 200
message: ''
@@ -4519,16 +4845,16 @@ interactions:
ParameterSetName:
- -g -n --app-version-ids --order-applications
User-Agent:
- - AZURECLI/2.63.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0)
+ - AZURECLI/2.70.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/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-07-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000002?api-version=2024-07-01
response:
body:
- string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\
+ string: "{\r\n \"name\": \"vm000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000002\"\
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"04e77ebd-a72b-496e-bfaa-665c5f367fc3\"\
+ : \"Succeeded\",\r\n \"vmId\": \"cac8b997-8eed-4258-811e-2e5d8806ec7e\"\
,\r\n \"applicationProfile\": {\r\n \"galleryApplications\": [\r\n\
\ {\r\n \"order\": 1,\r\n \"manuallyManaged\": false,\r\
\n \"packageReferenceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MyFirstApp/versions/1.0.0\"\
@@ -4541,16 +4867,16 @@ interactions:
storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\"\
: \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n\
\ \"sku\": \"2022-datacenter-g2\",\r\n \"version\": \"latest\"\
- ,\r\n \"exactVersion\": \"20348.2655.240810\"\r\n },\r\n \
+ ,\r\n \"exactVersion\": \"20348.3207.250210\"\r\n },\r\n \
\ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"\
- vm1_OsDisk_1_89e5ab6a0ca7469e96a831f5b85d19fb\",\r\n \"createOption\"\
+ vm000002_OsDisk_1_6490e4c2f668414eb1a2c482c49d37ae\",\r\n \"createOption\"\
: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\"\
: {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_89e5ab6a0ca7469e96a831f5b85d19fb\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm000002_OsDisk_1_6490e4c2f668414eb1a2c482c49d37ae\"\
\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\
: 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\"\
: \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"\
- vm1\",\r\n \"adminUsername\": \"clitest1234\",\r\n \"windowsConfiguration\"\
+ vm000002\",\r\n \"adminUsername\": \"clitest1234\",\r\n \"windowsConfiguration\"\
: {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\"\
: true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\
,\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \
@@ -4559,11 +4885,11 @@ interactions:
: true\r\n },\r\n \"securityProfile\": {\r\n \"uefiSettings\":\
\ {\r\n \"secureBootEnabled\": true,\r\n \"vTpmEnabled\": true\r\
\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n },\r\n \"\
- networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
+ networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000002VMNic\"\
}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"timeCreated\": \"\
- 2024-08-26T09:58:08.7623699+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\",\r\
+ 2025-03-03T10:16:44.4851414+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\",\r\
\n \"resources\": [\r\n {\r\n \"name\": \"VMAppExtension\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/extensions/VMAppExtension\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000002/extensions/VMAppExtension\"\
,\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n\
\ \"location\": \"eastus\",\r\n \"properties\": {\r\n \"\
autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\
@@ -4574,11 +4900,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '3730'
+ - '3765'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:01:10 GMT
+ - Mon, 03 Mar 2025 10:20:18 GMT
etag:
- '"3"'
expires:
@@ -4591,12 +4917,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;23974,Microsoft.Compute/LowCostGetResource;33
+ - Microsoft.Compute/LowCostGetSubscriptionMaximum;23998,Microsoft.Compute/LowCostGetResource;34
x-ms-ratelimit-remaining-subscription-global-reads:
- '3749'
x-msedge-ref:
- - 'Ref A: 3CCE41A8BF124461A39AEC39121F5C79 Ref B: TYO201151003042 Ref C: 2024-08-26T10:01:10Z'
+ - 'Ref A: 5E12BAB83094478E9BD6081F39ED21EB Ref B: SEL221051804033 Ref C: 2025-03-03T10:20:18Z'
status:
code: 200
message: ''
@@ -4614,16 +4942,16 @@ 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.70.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/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2024-07-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000002?api-version=2024-07-01
response:
body:
- string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\
+ string: "{\r\n \"name\": \"vm000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000002\"\
,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\
: \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"hardwareProfile\"\
: {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"provisioningState\"\
- : \"Succeeded\",\r\n \"vmId\": \"04e77ebd-a72b-496e-bfaa-665c5f367fc3\"\
+ : \"Succeeded\",\r\n \"vmId\": \"cac8b997-8eed-4258-811e-2e5d8806ec7e\"\
,\r\n \"applicationProfile\": {\r\n \"galleryApplications\": [\r\n\
\ {\r\n \"order\": 1,\r\n \"manuallyManaged\": false,\r\
\n \"packageReferenceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MyFirstApp/versions/1.0.0\"\
@@ -4636,16 +4964,16 @@ interactions:
storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\"\
: \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n\
\ \"sku\": \"2022-datacenter-g2\",\r\n \"version\": \"latest\"\
- ,\r\n \"exactVersion\": \"20348.2655.240810\"\r\n },\r\n \
+ ,\r\n \"exactVersion\": \"20348.3207.250210\"\r\n },\r\n \
\ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"\
- vm1_OsDisk_1_89e5ab6a0ca7469e96a831f5b85d19fb\",\r\n \"createOption\"\
+ vm000002_OsDisk_1_6490e4c2f668414eb1a2c482c49d37ae\",\r\n \"createOption\"\
: \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\"\
: {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"\
- id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_89e5ab6a0ca7469e96a831f5b85d19fb\"\
+ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm000002_OsDisk_1_6490e4c2f668414eb1a2c482c49d37ae\"\
\r\n },\r\n \"deleteOption\": \"Detach\",\r\n \"diskSizeGB\"\
: 127\r\n },\r\n \"dataDisks\": [],\r\n \"diskControllerType\"\
: \"SCSI\"\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"\
- vm1\",\r\n \"adminUsername\": \"clitest1234\",\r\n \"windowsConfiguration\"\
+ vm000002\",\r\n \"adminUsername\": \"clitest1234\",\r\n \"windowsConfiguration\"\
: {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\"\
: true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\
,\r\n \"assessmentMode\": \"ImageDefault\"\r\n },\r\n \
@@ -4654,11 +4982,11 @@ interactions:
: true\r\n },\r\n \"securityProfile\": {\r\n \"uefiSettings\":\
\ {\r\n \"secureBootEnabled\": true,\r\n \"vTpmEnabled\": true\r\
\n },\r\n \"securityType\": \"TrustedLaunch\"\r\n },\r\n \"\
- networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"\
+ networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm000002VMNic\"\
}]},\r\n \"licenseType\": \"Windows_Server\",\r\n \"timeCreated\": \"\
- 2024-08-26T09:58:08.7623699+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\",\r\
+ 2025-03-03T10:16:44.4851414+00:00\"\r\n },\r\n \"etag\": \"\\\"3\\\"\",\r\
\n \"resources\": [\r\n {\r\n \"name\": \"VMAppExtension\",\r\n \
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/extensions/VMAppExtension\"\
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm000002/extensions/VMAppExtension\"\
,\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n\
\ \"location\": \"eastus\",\r\n \"properties\": {\r\n \"\
autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\"\
@@ -4669,11 +4997,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '3730'
+ - '3765'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 26 Aug 2024 10:01:11 GMT
+ - Mon, 03 Mar 2025 10:20:19 GMT
etag:
- '"3"'
expires:
@@ -4686,12 +5014,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;23973,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: D3B8689FB0FE41A3BFC56773075DB696 Ref B: TYO201151004040 Ref C: 2024-08-26T10:01:11Z'
+ - 'Ref A: 6787CDB0370C46AABF913A3E766BBE09 Ref B: SEL221051504033 Ref C: 2025-03-03T10:20:20Z'
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 c348a095594..fab074ab914 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
@@ -12023,7 +12023,7 @@ def test_capacity_reservation_list_query_params(self, resource_group):
class VMVMSSAddApplicationTestScenario(ScenarioTest):
@AllowLargeResponse(size_kb=99999)
- @ResourceGroupPreparer()
+ @ResourceGroupPreparer(location='eastus')
def test_vm_add_application_empty_version_ids(self, resource_group):
self.kwargs.update({
'vm': 'vm1',
@@ -12043,7 +12043,7 @@ def test_vm_add_application_empty_version_ids(self, resource_group):
# Need prepare app versions
@AllowLargeResponse(size_kb=99999)
- @ResourceGroupPreparer()
+ @ResourceGroupPreparer(location='eastus')
def test_vm_add_application(self, resource_group):
self.kwargs.update({
'vm': 'vm1',
@@ -12068,10 +12068,10 @@ def test_vm_add_application(self, resource_group):
self.cmd('vm application list -g {rg} -n {vm}')
@AllowLargeResponse(size_kb=99999)
- @ResourceGroupPreparer()
+ @ResourceGroupPreparer(location='eastus')
def test_vm_add_application_with_order_application(self, resource_group):
self.kwargs.update({
- 'vm': 'vm1',
+ 'vm': self.create_random_name('vm', 10),
'vid1': '/subscriptions/{sub}/resourceGroups/galleryappaccount/providers/Microsoft.Compute/galleries/MyGallery/applications/MyFirstApp/versions/1.0.0'.format(
sub=self.get_subscription_id()
),
@@ -12096,7 +12096,7 @@ def test_vm_add_application_with_order_application(self, resource_group):
self.cmd('vm application list -g {rg} -n {vm}')
@AllowLargeResponse(size_kb=99999)
- @ResourceGroupPreparer()
+ @ResourceGroupPreparer(location='eastus')
def test_vm_add_application_with_config_override(self, resource_group):
self.kwargs.update({
'vm': 'vm1',